From 9843a36bec13f998c36bb9abda7b33760f3358c1 Mon Sep 17 00:00:00 2001 From: Zachinquarantine Date: Tue, 8 Mar 2022 18:42:14 -0500 Subject: [PATCH] mobile: remove deprecated Stop function (#24369) --- mobile/geth.go | 8 -------- 1 file changed, 8 deletions(-) diff --git a/mobile/geth.go b/mobile/geth.go index bad9e0589f..709b68cbde 100644 --- a/mobile/geth.go +++ b/mobile/geth.go @@ -220,14 +220,6 @@ func (n *Node) Start() error { return n.node.Start() } -// Stop terminates a running node along with all its services. If the node was not started, -// an error is returned. It is not possible to restart a stopped node. -// -// Deprecated: use Close() -func (n *Node) Stop() error { - return n.node.Close() -} - // GetEthereumClient retrieves a client to access the Ethereum subsystem. func (n *Node) GetEthereumClient() (client *EthereumClient, _ error) { rpc, err := n.node.Attach()