From 198b880f8c532dcd561185de0680bf8e68934262 Mon Sep 17 00:00:00 2001 From: gop Date: Fri, 25 Oct 2024 12:13:20 -0500 Subject: [PATCH] bugfix: making the error channel on unlock subscription --- quai/filters/filter_system.go | 1 + 1 file changed, 1 insertion(+) diff --git a/quai/filters/filter_system.go b/quai/filters/filter_system.go index 2ce294a29..a59399703 100644 --- a/quai/filters/filter_system.go +++ b/quai/filters/filter_system.go @@ -320,6 +320,7 @@ func (es *EventSystem) SubscribeUnlocks(unlocks chan core.UnlocksEvent) *Subscri logs: make(chan []*types.Log), hashes: make(chan []common.Hash), installed: make(chan struct{}), + err: make(chan error), unlocks: unlocks, } return es.subscribe(sub)