From a86e488d88454db636ce495030a200e2bfd43586 Mon Sep 17 00:00:00 2001 From: scx1332 Date: Tue, 13 Feb 2024 19:36:01 +0100 Subject: [PATCH] test gas transfer --- tests/docker_01_basic/multi_account_gas_transfer.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/docker_01_basic/multi_account_gas_transfer.rs b/tests/docker_01_basic/multi_account_gas_transfer.rs index 24dccd55..91046b70 100644 --- a/tests/docker_01_basic/multi_account_gas_transfer.rs +++ b/tests/docker_01_basic/multi_account_gas_transfer.rs @@ -129,7 +129,7 @@ async fn test_gas_transfer() -> Result<(), anyhow::Error> { let transaction_human = list_transactions_human(&proxy_url_base, proxy_key).await; log::info!("transaction list \n {}", transaction_human.join("\n")); assert!(transaction_human.len() > 20); - assert!(transaction_human.len() < 60); + assert!(transaction_human.len() < 120); } Ok(())