diff --git a/src/token/token_utils.cairo b/src/token/token_utils.cairo index aafd17fd..f33b36a6 100644 --- a/src/token/token_utils.cairo +++ b/src/token/token_utils.cairo @@ -7,7 +7,6 @@ use satoru::token::erc20::interface::{IERC20, IERC20Dispatcher, IERC20Dispatcher use satoru::utils::account_utils::validate_receiver; use satoru::bank::error::BankError; use integer::u256_from_felt252; -use debug::PrintTrait; fn fee_token(data_store: IDataStoreDispatcher) -> ContractAddress { @@ -26,7 +25,6 @@ fn transfer( receiver: ContractAddress, amount: u128 ) { - amount.print(); if (amount.is_zero()) { return (); } @@ -39,7 +37,6 @@ fn transfer( let success0 = IERC20Dispatcher { contract_address: token } .transfer(recipient: receiver, amount: amount_u256); if (success0 == true) { - amount_u256.print(); return (); } diff --git a/tests/exchange/test_liquidation_handler.cairo b/tests/exchange/test_liquidation_handler.cairo index 674bcc8f..809d050b 100644 --- a/tests/exchange/test_liquidation_handler.cairo +++ b/tests/exchange/test_liquidation_handler.cairo @@ -1,5 +1,5 @@ use snforge_std::{ - declare, start_prank, stop_prank, start_roll, ContractClassTrait, ContractClass, PrintTrait + declare, start_prank, stop_prank, start_roll, ContractClassTrait, ContractClass }; use satoru::exchange::liquidation_handler::{ diff --git a/tests/integration/create_market.cairo b/tests/integration/create_market.cairo index 7e1ba7af..83dca213 100644 --- a/tests/integration/create_market.cairo +++ b/tests/integration/create_market.cairo @@ -5,7 +5,6 @@ // Core lib imports. use result::ResultTrait; -use debug::PrintTrait; use traits::{TryInto, Into}; use starknet::{ ContractAddress, get_caller_address, Felt252TryIntoContractAddress, contract_address_const, @@ -241,8 +240,6 @@ fn test_deposit_market_integration() { // let balance = IERC20Dispatcher{ contract_address: market.market_token }.balance_of(caller_address); - // IERC20Dispatcher{ contract_address: market.demarket_token }.balance_of(caller_address).print(); - // ********************************************************************************************* // * TEARDOWN * // ********************************************************************************************* diff --git a/tests/integration/test_create_and_execute_swap.cairo b/tests/integration/test_create_and_execute_swap.cairo index 4335a7f3..d7b2e27b 100644 --- a/tests/integration/test_create_and_execute_swap.cairo +++ b/tests/integration/test_create_and_execute_swap.cairo @@ -13,7 +13,6 @@ use snforge_std::{ }; use traits::Default; use poseidon::poseidon_hash_span; -use debug::PrintTrait; // Local imports. use satoru::role::role; use satoru::tests_lib;