mirror of https://github.com/embarklabs/embark.git
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:
commit
91b147d248
|
@ -47,8 +47,8 @@ class GethCommands {
|
||||||
let cmd;
|
let cmd;
|
||||||
if (config.networkType === 'testnet') {
|
if (config.networkType === 'testnet') {
|
||||||
cmd = "--testnet";
|
cmd = "--testnet";
|
||||||
} else if (config.networkType === 'olympic') {
|
} else if (config.networkType === 'rinkeby') {
|
||||||
cmd = "--olympic";
|
cmd = "--rinkeby";
|
||||||
} else if (config.networkType === 'custom') {
|
} else if (config.networkType === 'custom') {
|
||||||
cmd = "--networkid=" + config.networkId;
|
cmd = "--networkid=" + config.networkId;
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,10 @@
|
||||||
"testnet": {
|
"testnet": {
|
||||||
"networkType": "testnet",
|
"networkType": "testnet",
|
||||||
"rpcHost": "localhost",
|
"rpcHost": "localhost",
|
||||||
"rpcPort": 8545
|
"rpcPort": 8545,
|
||||||
|
"account": {
|
||||||
|
"password": "config/development/password"
|
||||||
|
}
|
||||||
},
|
},
|
||||||
"livenet": {
|
"livenet": {
|
||||||
"networkType": "livenet",
|
"networkType": "livenet",
|
||||||
|
|
Loading…
Reference in New Issue