@solana/web3.js 1.43.4 → 1.43.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.cjs.js CHANGED
@@ -2652,10 +2652,10 @@ class Transaction {
2652
2652
  if (x.isWritable !== y.isWritable) {
2653
2653
  // Writable accounts always come before read-only accounts
2654
2654
  return x.isWritable ? -1 : 1;
2655
- } // Otherwise, sort by pubkey.
2655
+ } // Otherwise, sort by pubkey, stringwise.
2656
2656
 
2657
2657
 
2658
- return x.pubkey._bn.cmp(y.pubkey._bn);
2658
+ return x.pubkey.toBase58().localeCompare(y.pubkey.toBase58());
2659
2659
  }); // Move fee payer to the front
2660
2660
 
2661
2661
  const feePayerIndex = uniqueMetas.findIndex(x => {