Update param order for autofill_and_sign and sign_and_submit

This commit is contained in:
JST5000
2023-06-15 15:42:03 -07:00
parent 445b58bdd5
commit 968df9d379
12 changed files with 13 additions and 13 deletions

View File

@@ -203,7 +203,7 @@ class XRPLMonitorThread(Thread):
# send too many transactions too fast. You can send transactions more
# rapidly if you track the sequence number more carefully.
tx_signed = await xrpl.asyncio.transaction.autofill_and_sign(
tx, self.wallet, self.client)
tx, self.client, self.wallet)
await xrpl.asyncio.transaction.submit(tx_signed, self.client)
wx.CallAfter(self.gui.add_pending_tx, tx_signed)