diff --git a/content/tutorials/use-complex-payment-types/use-escrows/send-a-conditionally-held-escrow.md b/content/tutorials/use-complex-payment-types/use-escrows/send-a-conditionally-held-escrow.md index c05c619a2b..8a69fc6f80 100644 --- a/content/tutorials/use-complex-payment-types/use-escrows/send-a-conditionally-held-escrow.md +++ b/content/tutorials/use-complex-payment-types/use-escrows/send-a-conditionally-held-escrow.md @@ -17,12 +17,12 @@ const preimageData = crypto.randomBytes(32) const myFulfillment = new cc.PreimageSha256() myFulfillment.setPreimage(preimageData) -const condition = myFulfillment.getConditionBinary().toString('hex').toUpperCase(); +const condition = myFulfillment.getConditionBinary().toString('hex').toUpperCase() console.log('Condition:', condition) // (Random hexadecimal, 72 chars in length) // keep secret until you want to finish executing the held payment: -const fulfillment = myFulfillment.serializeBinary().toString('hex').toUpperCase(); +const fulfillment = myFulfillment.serializeBinary().toString('hex').toUpperCase() console.log('Fulfillment:', fulfillment) // (Random hexadecimal, 78 chars in length) ``` @@ -41,9 +41,9 @@ Example for setting a `CancelAfter` time of 24 hours in the future: _JavaScript_ ```js -const rippleOffset = 946684800; -const CancelAfter = Math.floor(Date.now() / 1000) + (24*60*60) - rippleOffset; -console.log(CancelAfter); +const rippleOffset = 946684800 +const CancelAfter = Math.floor(Date.now() / 1000) + (24*60*60) - rippleOffset +console.log(CancelAfter) // Example: 556927412 ```