Use shorter names for sign/submit

This commit is contained in:
JST5000
2023-06-15 13:29:54 -07:00
parent 965d8c20a2
commit 9e179c83c0
9 changed files with 16 additions and 16 deletions

View File

@@ -204,7 +204,7 @@ class XRPLMonitorThread(Thread):
# rapidly if you track the sequence number more carefully.
tx_signed = await xrpl.asyncio.transaction.autofill_and_sign(
tx, self.wallet, self.client)
await xrpl.asyncio.transaction.submit_transaction(tx_signed, self.client)
await xrpl.asyncio.transaction.submit(tx_signed, self.client)
wx.CallAfter(self.gui.add_pending_tx, tx_signed)