We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b394ea0 commit e98cfffCopy full SHA for e98cfff
resources/dev-tools/tx-sender.page.tsx
@@ -77,7 +77,7 @@ async function onClickCreateEscrow(
77
}
78
setEscrowWidthPercent(0)
79
80
- if(escrowCreateResponse.result.Sequence === undefined) {
+ if(escrowCreateResponse.result.tx_json.Sequence === undefined) {
81
82
errorNotif(submitConstData.alert,
83
"Error: Unable to get the sequence number from EscrowCreate, so cannot submit an EscrowFinish transaction.")
@@ -95,7 +95,7 @@ async function onClickCreateEscrow(
95
Account: sendingWallet.address,
96
TransactionType: "EscrowFinish",
97
Owner: sendingWallet.address,
98
- OfferSequence: escrowCreateResponse.result.Sequence
+ OfferSequence: escrowCreateResponse.result.tx_json.Sequence
99
})
100
101
0 commit comments