aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/main.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-07-01 16:13:53 +0800
committerGitHub <noreply@github.com>2016-07-01 16:13:53 +0800
commitda9aad88768efaae066d97e5cbfeb5a87a2adc90 (patch)
tree54d13e3a4f6e52a46d69a2f78ce1fc59d4beacb3 /cmd/geth/main.go
parent1e50f5dd281d28b8db1c65b9e80e53080b86e369 (diff)
parent96dc42d99c5eb1251b9ae049fab3800ecc3ed100 (diff)
downloadgo-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 'cmd/geth/main.go')
-rw-r--r--cmd/geth/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 623f8ac81..a65a43ac3 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -328,7 +328,7 @@ func startNode(ctx *cli.Context, stack *node.Node) {
}
// Start auxiliary services if enabled
if ctx.GlobalBool(utils.MiningEnabledFlag.Name) {
- var ethereum *eth.FullNodeService
+ var ethereum *eth.Ethereum
if err := stack.Service(&ethereum); err != nil {
utils.Fatalf("ethereum service not running: %v", err)
}