chore: decrease local pending block expiration time (#7896)

This commit is contained in:
Matthias Seitz
2024-04-25 20:29:06 +02:00
committed by GitHub
parent 663a7185e6
commit 16ae640615

View File

@ -355,7 +355,7 @@ where
let now = Instant::now();
*lock = Some(PendingBlock {
block: pending_block.clone(),
expires_at: now + Duration::from_secs(3),
expires_at: now + Duration::from_secs(1),
});
Ok(Some(pending_block))