We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c05b7f commit 0a2a26fCopy full SHA for 0a2a26f
lib/geth_commands.js
@@ -54,6 +54,8 @@ GethCommands.prototype.listAccountsCommand = function() {
54
cmd += "--testnet ";
55
} else if (config.networkType === 'olympic') {
56
cmd += "--olympic ";
57
+ } else if (config.networkType === 'custom') {
58
+ cmd += "--networkid " + config.networkId + " ";
59
}
60
61
if (config.datadir) {
@@ -80,9 +82,7 @@ GethCommands.prototype.mainCommand = function(address) {
80
82
81
83
84
- }
-
85
- if (config.networkType === 'custom') {
86
cmd += "--networkid " + config.networkId + " ";
87
88
0 commit comments