Skip to content

Commit

Permalink
chore: comment
Browse files Browse the repository at this point in the history
  • Loading branch information
chris13524 committed Sep 11, 2024
1 parent a7d02b3 commit eeec9f3
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions crates/yttrium/src/transaction/send/safe_test.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down

0 comments on commit eeec9f3

Please sign in to comment.