fix test app config and swap olympic for rinkeby as testnet option
Signed-off-by: VoR0220 <catalanor0220@gmail.com>
This commit is contained in:
parent
3d00b9b852
commit
391777d5bf
|
@ -47,8 +47,8 @@ class GethCommands {
|
|||
let cmd;
|
||||
if (config.networkType === 'testnet') {
|
||||
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;
|
||||
}
|
||||
|
|
|
@ -25,7 +25,10 @@
|
|||
"testnet": {
|
||||
"networkType": "testnet",
|
||||
"rpcHost": "localhost",
|
||||
"rpcPort": 8545
|
||||
"rpcPort": 8545,
|
||||
"account": {
|
||||
"password": "config/development/password"
|
||||
}
|
||||
},
|
||||
"livenet": {
|
||||
"networkType": "livenet",
|
||||
|
|
Loading…
Reference in New Issue