update blockchain config tests
This commit is contained in:
parent
e23e4bc417
commit
cd72a66c2b
|
@ -30,7 +30,11 @@ describe('embark.Blockchain', function () {
|
||||||
vmdebug: false,
|
vmdebug: false,
|
||||||
whisper: true,
|
whisper: true,
|
||||||
account: {},
|
account: {},
|
||||||
bootnodes: ""
|
bootnodes: "",
|
||||||
|
wsApi: [ "eth", "web3", "net", "shh" ],
|
||||||
|
wsHost: "localhost",
|
||||||
|
wsOrigins: false,
|
||||||
|
wsPort: 8546
|
||||||
};
|
};
|
||||||
let blockchain = new Blockchain(config, 'geth');
|
let blockchain = new Blockchain(config, 'geth');
|
||||||
|
|
||||||
|
@ -59,7 +63,11 @@ describe('embark.Blockchain', function () {
|
||||||
vmdebug: false,
|
vmdebug: false,
|
||||||
whisper: false,
|
whisper: false,
|
||||||
account: {},
|
account: {},
|
||||||
bootnodes: ""
|
bootnodes: "",
|
||||||
|
wsApi: [ "eth", "web3", "net", "shh" ],
|
||||||
|
wsHost: "localhost",
|
||||||
|
wsOrigins: false,
|
||||||
|
wsPort: 8546
|
||||||
};
|
};
|
||||||
let blockchain = new Blockchain(config, 'geth');
|
let blockchain = new Blockchain(config, 'geth');
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue