Set blindbit new block sync attempts at 4

This commit is contained in:
Sosthene 2025-06-21 13:11:12 +02:00 committed by Nicolas Cantu
parent 13f645c8d2
commit bf30c0de0c

View File

@ -369,7 +369,7 @@ async fn handle_zmq(zmq_url: String, blindbit_url: String) {
// Add retry logic for hashblock processing
let mut retry_count = 0;
const MAX_RETRIES: u32 = 3;
const MAX_RETRIES: u32 = 4;
const RETRY_DELAY_MS: u64 = 1000; // 1 second initial delay
loop {