From 5b855782396c5cefb3e15bbf9aca044b9a4eef83 Mon Sep 17 00:00:00 2001 From: "fletcher.fan" Date: Mon, 19 Jan 2026 14:21:31 +0800 Subject: [PATCH] reduce notifier poll interval from 500ms to 100ms --- l2node/notifier.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/l2node/notifier.go b/l2node/notifier.go index 111c2e9eb99..050e9cb6bd0 100644 --- a/l2node/notifier.go +++ b/l2node/notifier.go @@ -59,7 +59,7 @@ func (n *Notifier) RequestBlockData(height int64, createEmptyBlocksInterval time } return } - time.Sleep(500 * time.Millisecond) + time.Sleep(100 * time.Millisecond) } }() } else { @@ -89,7 +89,7 @@ func (n *Notifier) RequestBlockData(height int64, createEmptyBlocksInterval time return } } - time.Sleep(500 * time.Millisecond) + time.Sleep(100 * time.Millisecond) } }() }