aboutsummaryrefslogtreecommitdiffstats
path: root/jsonrpc.cpp
diff options
context:
space:
mode:
authorMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-20 16:01:14 +0800
committerMarek Kotewicz <marek.kotewicz@gmail.com>2014-10-20 16:01:14 +0800
commit959493c7f7c055e248ecdc762c8ff062be2e59c1 (patch)
treebde79f9a0c1a073dbd344bfe39e703ba3c5bce0d /jsonrpc.cpp
parent6adaa743f20cecd556b147c3fa0a6708ea6f0547 (diff)
downloaddexon-solidity-959493c7f7c055e248ecdc762c8ff062be2e59c1.tar.gz
dexon-solidity-959493c7f7c055e248ecdc762c8ff062be2e59c1.tar.zst
dexon-solidity-959493c7f7c055e248ecdc762c8ff062be2e59c1.zip
key, keys -> accounts populated to WebThreeStubServer
Diffstat (limited to 'jsonrpc.cpp')
-rw-r--r--jsonrpc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/jsonrpc.cpp b/jsonrpc.cpp
index 72cbc9f0..3656abfb 100644
--- a/jsonrpc.cpp
+++ b/jsonrpc.cpp
@@ -60,7 +60,7 @@ struct JsonrpcFixture {
web3.setIdealPeerCount(5);
web3.ethereum()->setForceMining(true);
- jsonrpcServer = auto_ptr<WebThreeStubServer>(new WebThreeStubServer(new jsonrpc::CorsHttpServer(8080), web3));
+ jsonrpcServer = auto_ptr<WebThreeStubServer>(new WebThreeStubServer(new jsonrpc::CorsHttpServer(8080), web3, {}));
jsonrpcServer->StartListening();
jsonrpcClient = auto_ptr<WebThreeStubClient>(new WebThreeStubClient(new jsonrpc::HttpClient("http://localhost:8080")));