From 46d94af6061c5e8ce5a98f66a38d7ac1945695ba Mon Sep 17 00:00:00 2001 From: j75689 Date: Fri, 26 Jul 2024 18:29:42 +0800 Subject: [PATCH] fix: change fetch header priority to normal --- crates/bsc/engine/src/task.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/bsc/engine/src/task.rs b/crates/bsc/engine/src/task.rs index e55f63100..73689f7cf 100644 --- a/crates/bsc/engine/src/task.rs +++ b/crates/bsc/engine/src/task.rs @@ -209,7 +209,7 @@ impl< // fetch header and verify let fetch_header_result = match timeout( fetch_header_timeout_duration, - block_fetcher.get_header_with_priority(info.block_hash, Priority::High), + block_fetcher.get_header_with_priority(info.block_hash, Priority::Normal), ) .await {