Skip to content

Commit 06c1def

Browse files
maurermiwadagso-gertjaap
authored andcommitted
Remove printlns
Signed-off-by: Michael Maurer <[email protected]>
1 parent 4de72e9 commit 06c1def

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

crates/revm/src/context/evm_context.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,6 @@ impl<DB: Database> EvmContext<DB> {
193193
CallValue::Transfer(value) => {
194194
// Transfer value from caller to called account. As value get transferred
195195
// target gets touched.
196-
println!("Caller: {:?}, Target: {:?}, Value: {:?}", inputs.caller, inputs.target_address, value);
197196
if let Some(result) = self.inner.journaled_state.transfer(
198197
&inputs.caller,
199198
&inputs.target_address,

crates/revm/src/journaled_state.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -594,7 +594,6 @@ impl JournaledState {
594594
}
595595
}
596596
Entry::Vacant(vac) => {
597-
println!("load_account: {:?}", address);
598597
let account =
599598
if let Some(account) = db.basic(address, write).map_err(EVMError::Database)? {
600599
account.into()

0 commit comments

Comments
 (0)