diff --git a/batcher/aligned-batcher/src/retry/batcher_retryables.rs b/batcher/aligned-batcher/src/retry/batcher_retryables.rs index ff527f173..d963398a9 100644 --- a/batcher/aligned-batcher/src/retry/batcher_retryables.rs +++ b/batcher/aligned-batcher/src/retry/batcher_retryables.rs @@ -142,7 +142,7 @@ mod test { .unwrap(); assert_eq!(balance, U256::zero()); - // Kill anvil + // Anvil is killed when the scope is left } let result = @@ -178,7 +178,7 @@ mod test { .unwrap(); assert_eq!(unlocked, false); - // Kill Anvil + // Anvil is killed when the scope is left } let result = user_balance_is_unlocked_retryable( @@ -220,7 +220,7 @@ mod test { .unwrap(); assert_eq!(nonce, U256::zero()); - // Kill Anvil + // Anvil is killed when the scope is left } let result = get_user_nonce_from_ethereum_retryable( @@ -256,7 +256,7 @@ mod test { let result = get_gas_price_retryable(ð_rpc_provider, ð_rpc_provider).await; assert!(result.is_ok()); - // kill Anvil + // Anvil is killed when the scope is left } let result = get_gas_price_retryable(ð_rpc_provider, ð_rpc_provider).await; assert!(matches!(result, Err(RetryError::Transient(_))));