@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.
@@ -6726,7 +6726,13 @@ class Connection {
6726
6726
  throw new Error('failed to get transactions: ' + res.error.message);
6727
6727
  }
6728
6728
 
6729
- return res.result;
6729
+ const result = res.result;
6730
+ if (!result) return result;
6731
+ return { ...result,
6732
+ transaction: { ...result.transaction,
6733
+ message: new Message(result.transaction.message)
6734
+ }
6735
+ };
6730
6736
  });
6731
6737
  return res;
6732
6738
  }