From 841fe604f95568d90d5c00ba7bec1b3db43f8c37 Mon Sep 17 00:00:00 2001 From: Alex Sharov Date: Tue, 6 Sep 2022 13:56:07 +0700 Subject: [PATCH] erigon22: fix infinity loop #624 --- state/history.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/state/history.go b/state/history.go index 6be85cd97..c041cc31a 100644 --- a/state/history.go +++ b/state/history.go @@ -195,7 +195,7 @@ type HistoryCollation struct { func (c HistoryCollation) Close() { if c.historyComp != nil { - c.Close() + c.historyComp.Close() } }