diff --git a/frame/contracts/src/tests.rs b/frame/contracts/src/tests.rs index 3d97be2bfb7cc..055d43b03e16b 100644 --- a/frame/contracts/src/tests.rs +++ b/frame/contracts/src/tests.rs @@ -3048,9 +3048,6 @@ fn test_failed_charge_should_roll_back_call() { DEPOSIT_PER_BYTE.with(|c| *c.borrow_mut() = 1_000); - let _ = Balances::make_free_balance_be(&ALICE, 1_000_000); - dbg!("BEFORE", Balances::free_balance(&ALICE)); - // dispatch the call let result = >::call( RuntimeOrigin::signed(ALICE), @@ -3062,7 +3059,6 @@ fn test_failed_charge_should_roll_back_call() { ); assert_err_ignore_postinfo!(result, TokenError::FundsUnavailable); - dbg!("AFTER", Balances::free_balance(&ALICE)); }) }