Skip to content

Commit

Permalink
Remove log printing (#359)
Browse files Browse the repository at this point in the history
  • Loading branch information
shouc authored Nov 16, 2023
1 parent f69afc1 commit a7657bd
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/evm/host.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1245,12 +1245,6 @@ where
}

fn log(&mut self, _address: EVMAddress, _topics: Vec<B256>, _data: Bytes) {
println!(
"log: {:?} {:?} {:?}",
_address,
_topics.iter().map(hex::encode).collect_vec(),
hex::encode(_data.clone())
);
// flag check
if _topics.len() == 1 {
let current_flag = _topics.last().unwrap().0;
Expand Down

0 comments on commit a7657bd

Please sign in to comment.