Merge pull request #536 from embark-framework/gethFixes

fix test app config and swap olympic for rinkeby as testnet option
This commit is contained in:
Iuri Matias 2018-06-15 14:22:40 -04:00 committed by GitHub
commit 91b147d248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 3 deletions

View File

@ -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;
}

View File

@ -25,7 +25,10 @@
"testnet": {
"networkType": "testnet",
"rpcHost": "localhost",
"rpcPort": 8545
"rpcPort": 8545,
"account": {
"password": "config/development/password"
}
},
"livenet": {
"networkType": "livenet",