mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-21 20:25:51 +00:00
Remove semicolons from js
This commit is contained in:
@@ -17,12 +17,12 @@ const preimageData = crypto.randomBytes(32)
|
|||||||
const myFulfillment = new cc.PreimageSha256()
|
const myFulfillment = new cc.PreimageSha256()
|
||||||
myFulfillment.setPreimage(preimageData)
|
myFulfillment.setPreimage(preimageData)
|
||||||
|
|
||||||
const condition = myFulfillment.getConditionBinary().toString('hex').toUpperCase();
|
const condition = myFulfillment.getConditionBinary().toString('hex').toUpperCase()
|
||||||
console.log('Condition:', condition)
|
console.log('Condition:', condition)
|
||||||
// (Random hexadecimal, 72 chars in length)
|
// (Random hexadecimal, 72 chars in length)
|
||||||
|
|
||||||
// keep secret until you want to finish executing the held payment:
|
// 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)
|
console.log('Fulfillment:', fulfillment)
|
||||||
// (Random hexadecimal, 78 chars in length)
|
// (Random hexadecimal, 78 chars in length)
|
||||||
```
|
```
|
||||||
@@ -41,9 +41,9 @@ Example for setting a `CancelAfter` time of 24 hours in the future:
|
|||||||
_JavaScript_
|
_JavaScript_
|
||||||
|
|
||||||
```js
|
```js
|
||||||
const rippleOffset = 946684800;
|
const rippleOffset = 946684800
|
||||||
const CancelAfter = Math.floor(Date.now() / 1000) + (24*60*60) - rippleOffset;
|
const CancelAfter = Math.floor(Date.now() / 1000) + (24*60*60) - rippleOffset
|
||||||
console.log(CancelAfter);
|
console.log(CancelAfter)
|
||||||
// Example: 556927412
|
// Example: 556927412
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user