From b32c95afb1ba875bc54f3074b0b45f06805798d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Mon, 23 Apr 2018 14:24:55 +0300 Subject: [PATCH] cmd/geth: fix variable name --- cmd/geth/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/geth/main.go b/cmd/geth/main.go index 8fff6fc541..b79beb8132 100644 --- a/cmd/geth/main.go +++ b/cmd/geth/main.go @@ -223,7 +223,7 @@ func geth(ctx *cli.Context) error { // it unlocks any requested accounts, and starts the RPC/IPC interfaces and the // miner. func startNode(ctx *cli.Context, stack *node.Node) { - debug.Memsize.Add("node", node) + debug.Memsize.Add("node", stack) // Start up the node itself utils.StartNode(stack)