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 /console/console_test.go | |
parent | 1e50f5dd281d28b8db1c65b9e80e53080b86e369 (diff) | |
parent | 96dc42d99c5eb1251b9ae049fab3800ecc3ed100 (diff) | |
download | go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.gz go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.bz2 go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.lz go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.xz go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.tar.zst go-tangerine-da9aad88768efaae066d97e5cbfeb5a87a2adc90.zip |
Merge pull request #2759 from karalabe/drop-redundant-full-service
cmd, common, console, eth, release: drop redundant "full"s
Diffstat (limited to 'console/console_test.go')
-rw-r--r-- | console/console_test.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/console/console_test.go b/console/console_test.go index b40db0604..7738d0c44 100644 --- a/console/console_test.go +++ b/console/console_test.go @@ -76,7 +76,7 @@ func (p *hookedPrompter) SetWordCompleter(completer WordCompleter) {} type tester struct { workspace string stack *node.Node - ethereum *eth.FullNodeService + ethereum *eth.Ethereum console *Console input *hookedPrompter output *bytes.Buffer @@ -134,7 +134,7 @@ func newTester(t *testing.T, confOverride func(*eth.Config)) *tester { t.Fatalf("failed to create JavaScript console: %v", err) } // Create the final tester and return - var ethereum *eth.FullNodeService + var ethereum *eth.Ethereum stack.Service(ðereum) return &tester{ |