@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.browser.cjs.js +7 -1
- package/lib/index.browser.cjs.js.map +1 -1
- package/lib/index.browser.esm.js +7 -1
- package/lib/index.browser.esm.js.map +1 -1
- package/lib/index.cjs.js +7 -1
- package/lib/index.cjs.js.map +1 -1
- package/lib/index.esm.js +7 -1
- package/lib/index.esm.js.map +1 -1
- package/lib/index.iife.js +7 -1
- package/lib/index.iife.js.map +1 -1
- package/lib/index.iife.min.js +1 -1
- package/lib/index.iife.min.js.map +1 -1
- package/package.json +1 -1
- package/src/connection.ts +10 -1
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
|
-
|
|
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
|
}
|