Skip to content

Commit

Permalink
GH-500: removed an eprintln!
Browse files Browse the repository at this point in the history
  • Loading branch information
Bert authored and Bert committed Sep 29, 2024
1 parent 38ba946 commit 5bfa182
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1853,7 +1853,7 @@ mod tests {
// limited by the units here
Chain::BaseMainnet | Chain::BaseSepolia => 1,
};
let payment_size_wei = 1_000_000_000_000;
let payment_size_wei = gwei_to_wei(1_000_u64);
let payable_account = make_payable_account_with_wallet_and_balance_and_timestamp_opt(
recipient_wallet,
payment_size_wei,
Expand All @@ -1871,7 +1871,6 @@ mod tests {
.unwrap();

let byte_set_to_compare = signed_transaction.raw_transaction.0;
eprintln!("signed {}", hex::encode(byte_set_to_compare.clone()));
assert_eq!(
byte_set_to_compare,
template,
Expand Down

0 comments on commit 5bfa182

Please sign in to comment.