@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.
@@ -6757,7 +6757,13 @@ class Connection {
6757
6757
  throw new Error('failed to get transactions: ' + res.error.message);
6758
6758
  }
6759
6759
 
6760
- return res.result;
6760
+ const result = res.result;
6761
+ if (!result) return result;
6762
+ return { ...result,
6763
+ transaction: { ...result.transaction,
6764
+ message: new Message(result.transaction.message)
6765
+ }
6766
+ };
6761
6767
  });
6762
6768
  return res;
6763
6769
  }