cmd/geth: fix variable name

This commit is contained in:
Péter Szilágyi 2018-04-23 14:24:55 +03:00 committed by GitHub
parent 4199d9c76b
commit b32c95afb1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -223,7 +223,7 @@ func geth(ctx *cli.Context) error {
// it unlocks any requested accounts, and starts the RPC/IPC interfaces and the // it unlocks any requested accounts, and starts the RPC/IPC interfaces and the
// miner. // miner.
func startNode(ctx *cli.Context, stack *node.Node) { func startNode(ctx *cli.Context, stack *node.Node) {
debug.Memsize.Add("node", node) debug.Memsize.Add("node", stack)
// Start up the node itself // Start up the node itself
utils.StartNode(stack) utils.StartNode(stack)