diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-07-01 16:13:53 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-01 16:13:53 +0800 |
commit | da9aad88768efaae066d97e5cbfeb5a87a2adc90 (patch) | |
tree | 54d13e3a4f6e52a46d69a2f78ce1fc59d4beacb3 /cmd/gethrpctest/main.go | |
parent | 1e50f5dd281d28b8db1c65b9e80e53080b86e369 (diff) | |
parent | 96dc42d99c5eb1251b9ae049fab3800ecc3ed100 (diff) | |
download | dexon-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar dexon-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.gz dexon-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.bz2 dexon-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.lz dexon-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.xz dexon-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.zst dexon-da9aad88768efaae066d97e5cbfeb5a87a2adc90.zip |
Merge pull request #2759 from karalabe/drop-redundant-full-service
cmd, common, console, eth, release: drop redundant "full"s
Diffstat (limited to 'cmd/gethrpctest/main.go')
-rw-r--r-- | cmd/gethrpctest/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/gethrpctest/main.go b/cmd/gethrpctest/main.go index 668efbfc7..2e07e9426 100644 --- a/cmd/gethrpctest/main.go +++ b/cmd/gethrpctest/main.go @@ -146,7 +146,7 @@ func MakeSystemNode(keydir string, privkey string, test *tests.BlockTest) (*node // RunTest executes the specified test against an already pre-configured protocol // stack to ensure basic checks pass before running RPC tests. func RunTest(stack *node.Node, test *tests.BlockTest) error { - var ethereum *eth.FullNodeService + var ethereum *eth.Ethereum stack.Service(ðereum) blockchain := ethereum.BlockChain() |