From 9d1c3fc15cbbb6da8406a10f5d2fee5d859d53c8 Mon Sep 17 00:00:00 2001 From: Anthony Laibe Date: Tue, 30 Oct 2018 22:04:38 +0100 Subject: [PATCH] Fix test --- test/blockchain.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/test/blockchain.js b/test/blockchain.js index e006d1884..3bd90e578 100644 --- a/test/blockchain.js +++ b/test/blockchain.js @@ -21,7 +21,7 @@ describe('embark.Blockchain', function() { mineWhenNeeded: false, rpcHost: defaultHost, rpcPort: 8545, - rpcApi: ['eth', 'web3', 'net', 'debug'], + rpcApi: ['eth', 'web3', 'net', 'debug', "personal"], rpcCorsDomain: false, networkId: 1337, port: 30303, @@ -33,7 +33,7 @@ describe('embark.Blockchain', function() { account: {}, devPassword: "", bootnodes: "", - wsApi: ["eth", "web3", "net", "shh", "debug", "pubsub"], + wsApi: ["eth", "web3", "net", "shh", "debug", "pubsub", "personal"], wsHost: defaultHost, wsOrigins: false, wsPort: 8546, @@ -64,7 +64,7 @@ describe('embark.Blockchain', function() { mineWhenNeeded: true, rpcHost: defaultHost, rpcPort: 12345, - rpcApi: ['eth', 'web3', 'net', 'debug'], + rpcApi: ['eth', 'web3', 'net', 'debug', "personal"], rpcCorsDomain: true, networkId: 1, port: 123456, @@ -76,7 +76,7 @@ describe('embark.Blockchain', function() { account: {}, devPassword: "foo/bar/devpassword", bootnodes: "", - wsApi: ["eth", "web3", "net", "shh", "debug"], + wsApi: ["eth", "web3", "net", "shh", "debug", "personal"], wsHost: defaultHost, wsOrigins: false, wsPort: 12346, @@ -97,7 +97,7 @@ describe('embark.Blockchain', function() { mineWhenNeeded: true, rpcHost: defaultHost, rpcPort: 12345, - rpcApi: ['eth', 'web3', 'net', 'debug'], + rpcApi: ['eth', 'web3', 'net', 'debug', 'personal'], rpcCorsDomain: true, networkId: 1, port: 123456, @@ -109,7 +109,7 @@ describe('embark.Blockchain', function() { account: {}, devPassword: "foo/bar/devpassword", bootnodes: "", - wsApi: ["eth", "web3", "net", "shh", "debug"], + wsApi: ["eth", "web3", "net", "shh", "debug", "personal"], wsHost: defaultHost, wsOrigins: false, wsPort: 12346,