Add networkType rinkeby

This commit is contained in:
Heikki Hakala 2018-01-22 09:53:53 +02:00
parent 639612579b
commit fd70689bec
1 changed files with 2 additions and 0 deletions

View File

@ -44,6 +44,8 @@ class GethCommands {
cmd += "--testnet ";
} else if (config.networkType === 'olympic') {
cmd += "--olympic ";
} else if (config.networkType === 'rinkeby') {
cmd += "--rinkeby ";
} else if (config.networkType === 'custom') {
cmd += "--networkid " + config.networkId + " ";
}