diff options
author | Janoš Guljaš <janos@users.noreply.github.com> | 2019-02-07 18:40:36 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2019-02-07 18:40:36 +0800 |
commit | 26aea736736dc70257b1c11676f626ab775e9339 (patch) | |
tree | 93d60a587905e6f5ac170d71fb0c78127ec75d27 /mobile/geth.go | |
parent | 81801ccc2b5444ebcf05bf1cf1562fc7a7c2b93e (diff) | |
download | go-tangerine-26aea736736dc70257b1c11676f626ab775e9339.tar go-tangerine-26aea736736dc70257b1c11676f626ab775e9339.tar.gz go-tangerine-26aea736736dc70257b1c11676f626ab775e9339.tar.bz2 go-tangerine-26aea736736dc70257b1c11676f626ab775e9339.tar.lz go-tangerine-26aea736736dc70257b1c11676f626ab775e9339.tar.xz go-tangerine-26aea736736dc70257b1c11676f626ab775e9339.tar.zst go-tangerine-26aea736736dc70257b1c11676f626ab775e9339.zip |
cmd, node, p2p/simulations: fix node account manager leak (#19004)
* node: close AccountsManager in new Close method
* p2p/simulations, p2p/simulations/adapters: handle node close on shutdown
* node: move node ephemeralKeystore cleanup to stop method
* node: call Stop in Node.Close method
* cmd/geth: close node.Node created with makeFullNode in cli commands
* node: close Node instances in tests
* cmd/geth, node: minor code style fixes
* cmd, console, miner, mobile: proper node Close() termination
Diffstat (limited to 'mobile/geth.go')
-rw-r--r-- | mobile/geth.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mobile/geth.go b/mobile/geth.go index 781f42f70..fba3e5711 100644 --- a/mobile/geth.go +++ b/mobile/geth.go @@ -192,6 +192,12 @@ func NewNode(datadir string, config *NodeConfig) (stack *Node, _ error) { return &Node{rawStack}, nil } +// Close terminates a running node along with all it's services, tearing internal +// state doen too. It's not possible to restart a closed node. +func (n *Node) Close() error { + return n.node.Close() +} + // Start creates a live P2P node and starts running it. func (n *Node) Start() error { return n.node.Start() |