We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 857e08f commit a632986Copy full SHA for a632986
packages/neuron-wallet/src/services/tx/transaction-generator.ts
@@ -268,7 +268,10 @@ export class TransactionGenerator {
268
tx.addOutput(output)
269
}
270
271
- tx.outputs = ArrayUtils.shuffle(tx.outputs)
+ const wallet = WalletService.getInstance().getCurrent()
272
+ if (!wallet?.isHardware()) {
273
+ tx.outputs = ArrayUtils.shuffle(tx.outputs)
274
+ }
275
tx.outputsData = tx.outputs.map(output => output.data || '0x')
276
tx.hash = tx.computeHash()
277
0 commit comments