@solana/web3.js 1.41.4 → 1.41.5

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
@@ -14174,11 +14174,7 @@ var solanaWeb3 = (function (exports) {
14174
14174
 
14175
14175
 
14176
14176
  compileMessage() {
14177
- if (this._message) {
14178
- if (JSON.stringify(this.toJSON()) !== JSON.stringify(this._json)) {
14179
- throw new Error('Transaction message mutated after being populated from Message');
14180
- }
14181
-
14177
+ if (this._message && JSON.stringify(this.toJSON()) === JSON.stringify(this._json)) {
14182
14178
  return this._message;
14183
14179
  }
14184
14180