From d15d208ad30b7124ede0108136a88955fb4e57c0 Mon Sep 17 00:00:00 2001 From: Daniil Polyakov Date: Wed, 19 Nov 2025 16:29:40 +0300 Subject: [PATCH] fix: typo --- integration_tests/src/test_suite_map.rs | 2 +- wallet/src/poller.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/integration_tests/src/test_suite_map.rs b/integration_tests/src/test_suite_map.rs index affefc1..49998e3 100644 --- a/integration_tests/src/test_suite_map.rs +++ b/integration_tests/src/test_suite_map.rs @@ -1664,7 +1664,7 @@ pub async fn tps_test() { for (i, tx_hash) in tx_hashes.iter().enumerate() { loop { if now.elapsed().as_millis() > target_time.as_millis() { - panic!("TPS test failed by timout"); + panic!("TPS test failed by timeout"); } let tx_obj = seq_client diff --git a/wallet/src/poller.rs b/wallet/src/poller.rs index 279197f..e6752ca 100644 --- a/wallet/src/poller.rs +++ b/wallet/src/poller.rs @@ -11,6 +11,7 @@ use crate::config::WalletConfig; pub struct TxPoller { pub polling_max_blocks_to_query: usize, pub polling_max_error_attempts: u64, + // TODO: This should be Duration pub polling_error_delay_millis: u64, pub polling_delay_millis: u64, pub client: Arc,