Skip to content
This repository has been archived by the owner on Aug 2, 2024. It is now read-only.

Commit

Permalink
removed useless print
Browse files Browse the repository at this point in the history
  • Loading branch information
azurwastaken committed Jun 20, 2024
1 parent 63c59e8 commit 773e9f8
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions crates/client/l1-gas-price/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,6 @@ async fn update_gas_price(
}
}
Err(e) => {
println!("ERROR : {:?}", e);
log::error!("Failed to retrieve ETH/STRK price: {:?}", e);
}
};
Expand All @@ -140,7 +139,6 @@ async fn update_gas_price(
gas_price.last_update_timestamp = std::time::SystemTime::now().duration_since(std::time::UNIX_EPOCH)?.as_millis();
// explicitly dropping gas price here to avoid long waits when fetching the value
// on the inherent side which would increase block time
println!("gas_price : {:#?}", gas_price);
drop(gas_price);

Ok(())
Expand Down

0 comments on commit 773e9f8

Please sign in to comment.