mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
eth/fetcher : add missing calls timer.Stop()
This commit is contained in:
parent
f15849cf00
commit
7b39c71b79
1 changed files with 2 additions and 0 deletions
|
|
@ -302,6 +302,8 @@ func (f *BlockFetcher) loop() {
|
|||
// Iterate the block fetching until a quit is requested
|
||||
fetchTimer := time.NewTimer(0)
|
||||
completeTimer := time.NewTimer(0)
|
||||
defer fetchTimer.Stop()
|
||||
defer completeTimer.Stop()
|
||||
|
||||
for {
|
||||
// Clean up any expired block fetches
|
||||
|
|
|
|||
Loading…
Reference in a new issue