aboutsummaryrefslogtreecommitdiffstats
path: root/rpc/api/api_test.go
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-11-27 17:41:22 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-11-27 17:41:22 +0800
commit7dde2b902cf81e90b484b1a48f6d45e0abd10e0f (patch)
tree9b92cb3e42269697e0a2b553ba31c36aef73cc25 /rpc/api/api_test.go
parentffe58bf5abe5100b29ac1091c882f586cd3a2ef9 (diff)
parent3e1000fda3424d880bc43ebbb16d8a33447d4182 (diff)
downloaddexon-7dde2b902cf81e90b484b1a48f6d45e0abd10e0f.tar
dexon-7dde2b902cf81e90b484b1a48f6d45e0abd10e0f.tar.gz
dexon-7dde2b902cf81e90b484b1a48f6d45e0abd10e0f.tar.bz2
dexon-7dde2b902cf81e90b484b1a48f6d45e0abd10e0f.tar.lz
dexon-7dde2b902cf81e90b484b1a48f6d45e0abd10e0f.tar.xz
dexon-7dde2b902cf81e90b484b1a48f6d45e0abd10e0f.tar.zst
dexon-7dde2b902cf81e90b484b1a48f6d45e0abd10e0f.zip
Merge pull request #1970 from karalabe/customizable-protocol-stacks
Customizable protocol stacks
Diffstat (limited to 'rpc/api/api_test.go')
-rw-r--r--rpc/api/api_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/rpc/api/api_test.go b/rpc/api/api_test.go
index 131ef68f8..eb63e8151 100644
--- a/rpc/api/api_test.go
+++ b/rpc/api/api_test.go
@@ -93,7 +93,7 @@ func TestCompileSolidity(t *testing.T) {
expSource := source
eth := &eth.Ethereum{}
- xeth := xeth.NewTest(eth, nil)
+ xeth := xeth.NewTest(nil, nil)
api := NewEthApi(xeth, eth, codec.JSON)
var rpcRequest shared.Request