From eeab2f43247612d1d11064a9d340c02706c09717 Mon Sep 17 00:00:00 2001 From: Rafael Taranto Date: Tue, 12 Sep 2023 21:21:43 +0100 Subject: [PATCH] fix: transaction ID --- lib/plugins/wallet/tron/base.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/plugins/wallet/tron/base.js b/lib/plugins/wallet/tron/base.js index b902640f..03dc4e46 100644 --- a/lib/plugins/wallet/tron/base.js +++ b/lib/plugins/wallet/tron/base.js @@ -83,7 +83,7 @@ const sendCoins = async (account, tx) => { } const transaction = response.transaction - const txId = transaction.txId + const txId = transaction.txID const transactionInfo = tronWeb.trx.getTransactionInfo(txId) if (!transactionInfo || !transactionInfo.fee) return { txId }