From 1a586ba542e170ebc92e0222d758aeab42b05cdb Mon Sep 17 00:00:00 2001 From: yann300 Date: Fri, 2 Mar 2018 10:32:20 +0100 Subject: [PATCH] add personal mode to test node --- src/services/startMistGeth.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/startMistGeth.js b/src/services/startMistGeth.js index 3559e9a08e..ada93b8cf8 100644 --- a/src/services/startMistGeth.js +++ b/src/services/startMistGeth.js @@ -22,7 +22,7 @@ module.exports = function (dataDir, mist, geth, mine, rpc, rpcPort) { gethArgs.push('--rpccorsdomain') gethArgs.push(rpc) gethArgs.push('--rpcapi') - gethArgs.push('web3,eth,debug,net') + gethArgs.push('web3,eth,debug,net,personal') if (!rpcPort) { rpcPort = 8545 }