Skip to content

Commit

Permalink
fix tss nonce in pending cctx view
Browse files Browse the repository at this point in the history
  • Loading branch information
brewmaster012 committed Sep 5, 2024
1 parent cdc3c7e commit 5c42333
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crosschain.js
Original file line number Diff line number Diff line change
Expand Up @@ -547,7 +547,7 @@ await renderHeader();
console.log("cctx", cctx);
const outs = cctx.outbound_params;
const out = outs[outs.length - 1];
pendingNonces.push(out.outbound_tx_tss_nonce);
pendingNonces.push(out.tss_nonce);
}
console.log(`pending cctx chain id ${chainID}`, data);
div.appendChild(addDetails(`pending cctx chainID ${chainID}; #nonces: ${data.CrossChainTx.length}; nonces: ${pendingNonces}`, JSON.stringify(data.CrossChainTx, null, 2)));
Expand Down

0 comments on commit 5c42333

Please sign in to comment.