@solana/web3.js 1.44.1 → 1.44.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.iife.js CHANGED
@@ -21582,7 +21582,13 @@ var solanaWeb3 = (function (exports) {
21582
21582
  throw new Error('failed to get transactions: ' + res.error.message);
21583
21583
  }
21584
21584
 
21585
- return res.result;
21585
+ const result = res.result;
21586
+ if (!result) return result;
21587
+ return { ...result,
21588
+ transaction: { ...result.transaction,
21589
+ message: new Message(result.transaction.message)
21590
+ }
21591
+ };
21586
21592
  });
21587
21593
  return res;
21588
21594
  }