From 1fd194cf76c36f647f238eac81f4723c7c3f9945 Mon Sep 17 00:00:00 2001 From: Alexandru Vasile Date: Mon, 8 Jan 2024 18:28:30 +0200 Subject: [PATCH] backend: Panic after 240s instead of 120s Signed-off-by: Alexandru Vasile --- subxt/src/backend/unstable/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subxt/src/backend/unstable/mod.rs b/subxt/src/backend/unstable/mod.rs index 97cf15cdf0..cd6de1b03c 100644 --- a/subxt/src/backend/unstable/mod.rs +++ b/subxt/src/backend/unstable/mod.rs @@ -500,7 +500,7 @@ impl Backend for UnstableBackend { // Now we can attempt to associate tx events with pinned blocks. let tx_stream = futures::stream::poll_fn(move |cx| { loop { - if now.elapsed().as_secs() > 120 { + if now.elapsed().as_secs() > 240 { println!("Fin block {:?}", unsafe { &FIN_BLOCK }); println!("Pruned block {:?}", unsafe { &PRUNED }); println!("MemLog: {:#?}", mem_log);