From e98cfff5e1702947d2dd61ae2bad8328289fd801 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Fri, 11 Apr 2025 10:47:22 -0700 Subject: [PATCH] Update tx-sender for API v2 --- resources/dev-tools/tx-sender.page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/dev-tools/tx-sender.page.tsx b/resources/dev-tools/tx-sender.page.tsx index eb1ea4bbb9..c2631b9a79 100644 --- a/resources/dev-tools/tx-sender.page.tsx +++ b/resources/dev-tools/tx-sender.page.tsx @@ -77,7 +77,7 @@ async function onClickCreateEscrow( } setEscrowWidthPercent(0) - if(escrowCreateResponse.result.Sequence === undefined) { + if(escrowCreateResponse.result.tx_json.Sequence === undefined) { errorNotif(submitConstData.alert, "Error: Unable to get the sequence number from EscrowCreate, so cannot submit an EscrowFinish transaction.") @@ -95,7 +95,7 @@ async function onClickCreateEscrow( Account: sendingWallet.address, TransactionType: "EscrowFinish", Owner: sendingWallet.address, - OfferSequence: escrowCreateResponse.result.Sequence + OfferSequence: escrowCreateResponse.result.tx_json.Sequence }) } }