From d3057350ec1e1073765b4da5d13a4e7092a0b30b Mon Sep 17 00:00:00 2001 From: Kosta Korenkov Date: Fri, 26 Jul 2019 17:57:57 +0300 Subject: [PATCH] feat: show funded priv key after start (#38) so that you can use machine gun and other stuff right away --- src/run.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/run.js b/src/run.js index ec6de48..d04e336 100644 --- a/src/run.js +++ b/src/run.js @@ -158,6 +158,7 @@ module.exports = async () => { console.log(`\n Leap JSON RPC: ${nodes[0].getRpcUrl()}`); console.log(`Root chain RPC: http://localhost:${ganachePort}\n`); + console.log('Priv key: ', accounts[0].privKey); return { contracts, nodes, accounts, wallet, plasmaWallet }; };