aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth/main.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-06-30 18:03:26 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-06-30 18:03:26 +0800
commit96dc42d99c5eb1251b9ae049fab3800ecc3ed100 (patch)
tree54d13e3a4f6e52a46d69a2f78ce1fc59d4beacb3 /cmd/geth/main.go
parent1e50f5dd281d28b8db1c65b9e80e53080b86e369 (diff)
downloaddexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar
dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.gz
dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.bz2
dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.lz
dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.xz
dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.tar.zst
dexon-96dc42d99c5eb1251b9ae049fab3800ecc3ed100.zip
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)
}