Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
owl352 committed Oct 21, 2024
1 parent 95c3c48 commit 9118549
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/api/src/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ const decodeStateTransition = async (client, base64) => {
decoded.senderId = stateTransition.getIdentityId().toString()
decoded.amount = parseInt(stateTransition.getAmount())
decoded.nonce = parseInt(stateTransition.getNonce())
decoded.outputScript = stateTransition.getOutputScript().toString('hex')
decoded.outputScript = stateTransition.getOutputScript()?.toString('hex') ?? null
decoded.coreFeePerByte = stateTransition.getCoreFeePerByte()

break
Expand Down

0 comments on commit 9118549

Please sign in to comment.