From 9e65bcde6ab596bf00fef9620a360d5f5636ba2e Mon Sep 17 00:00:00 2001 From: Evguenia degtiareva Date: Tue, 7 May 2019 14:05:28 -0700 Subject: [PATCH] Add a status message for create account complete. --- index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/index.js b/index.js index 47a3bec7..0c70a0e4 100755 --- a/index.js +++ b/index.js @@ -46,6 +46,7 @@ exports.createDevAccount = async function(options) { await options.deps.createAccount(options.accountId, keyPair.getPublicKey()); const keyStore = new UnencryptedFileSystemKeyStore(); keyStore.setKey(options.accountId, keyPair); + console.log("Create account complete."); }; async function deployContractAndWaitForTransaction(accountId, data, near) {