From 0584000b2000ef85436464fdf756451259fed688 Mon Sep 17 00:00:00 2001 From: Jackson Mills Date: Mon, 18 Oct 2021 10:32:08 -0700 Subject: [PATCH] Comment set-global-freeze and remove old import --- content/_code-samples/freeze/set-global-freeze.js | 12 ++++++++---- .../_code-samples/freeze/set-individual-freeze.js | 1 - 2 files changed, 8 insertions(+), 5 deletions(-) diff --git a/content/_code-samples/freeze/set-global-freeze.js b/content/_code-samples/freeze/set-global-freeze.js index 3dfd9d362b..162a3c59a6 100644 --- a/content/_code-samples/freeze/set-global-freeze.js +++ b/content/_code-samples/freeze/set-global-freeze.js @@ -8,22 +8,26 @@ async function main() { client.on('error', (errorCode, errorMessage) => { console.log(errorCode + ': ' + errorMessage) }) - + // Get credentials from the Testnet Faucet ------------------------------------ + console.log("Requesting an address from the Testnet faucet...") const { wallet, balance } = await client.fundWallet() - // Prepare a settings transaction to enable global freeze + // Prepare an AccountSet transaction to enable global freeze ------------------ const accountSetTx = { TransactionType: "AccountSet", Account: wallet.address, - // Send a flag to turn on a global freeze on this account + // Set a flag to turn on a global freeze on this account SetFlag: xrpl.AccountSetAsfFlags.asfGlobalFreeze } - // Sign and submit the settings transaction + // Sign and submit the AccountSet transaction to enable a global freeze ------- console.log('Sign and submit the transaction:', accountSetTx) await client.submitReliable(wallet, accountSetTx) + console.log("Finished submitting. Now disconnecting.") await client.disconnect() + + // End main() } main().catch(console.error) \ No newline at end of file diff --git a/content/_code-samples/freeze/set-individual-freeze.js b/content/_code-samples/freeze/set-individual-freeze.js index 60ffc296d8..07639edaf6 100644 --- a/content/_code-samples/freeze/set-individual-freeze.js +++ b/content/_code-samples/freeze/set-individual-freeze.js @@ -1,4 +1,3 @@ -const { validate } = require('xrpl') const xrpl = require('xrpl') async function main() {