Skip to content

Commit

Permalink
remove dbg (#446)
Browse files Browse the repository at this point in the history
  • Loading branch information
shouc authored Apr 1, 2024
1 parent 4b7d66f commit c769558
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/evm/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1018,17 +1018,17 @@ where
};
}
match *interp.instruction_pointer {
0xfd => {
println!("fd {} @ {:?}", interp.program_counter(), interp.contract.address);
}
0x3b => {
println!(
"3b {} @ {:?} {:?}",
interp.program_counter(),
interp.contract.address,
fast_peek!(0)
);
}
// 0xfd => {
// println!("fd {} @ {:?}", interp.program_counter(), interp.contract.address);
// }
// 0x3b => {
// println!(
// "3b {} @ {:?} {:?}",
// interp.program_counter(),
// interp.contract.address,
// fast_peek!(0)
// );
// }
// 0x31 | 0x47 => {
// debug!("host setp balance");
// std::thread::sleep(std::time::Duration::from_secs(3));
Expand Down

0 comments on commit c769558

Please sign in to comment.