From eeec9f3bedf513dabbd75848d2524d2bf548e796 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Wed, 11 Sep 2024 13:51:08 -0700 Subject: [PATCH] chore: comment --- crates/yttrium/src/transaction/send/safe_test.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/crates/yttrium/src/transaction/send/safe_test.rs b/crates/yttrium/src/transaction/send/safe_test.rs index 4019310..63546b7 100644 --- a/crates/yttrium/src/transaction/send/safe_test.rs +++ b/crates/yttrium/src/transaction/send/safe_test.rs @@ -457,6 +457,9 @@ mod tests { to: Address, ) -> eyre::Result<()> { if amount > U256::from(20) { + // Basic check (which we can tune) to make sure we don't use + // excessive amounts (e.g. 0.1) of test ETH. It is not infinite, so + // we should use the minimum amount necessary. panic!("You probably don't need that much"); } println!("address: {}", faucet.address());