fix: typo

This commit is contained in:
Daniil Polyakov 2025-11-19 16:29:40 +03:00
parent c1fabb2181
commit d15d208ad3
2 changed files with 2 additions and 1 deletions

View File

@ -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

View File

@ -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<SequencerClient>,