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

Commit

Permalink
fix(core/Transaction): remove debug print (#1067)
Browse files Browse the repository at this point in the history
  • Loading branch information
jquesnelle authored Mar 20, 2022
1 parent a0d7995 commit 35748d0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion ethers-core/src/types/transaction/response.rs
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,6 @@ impl Transaction {
rlp: &rlp::Rlp,
offset: &mut usize,
) -> Result<(), DecoderError> {
println!("are we a list {}", rlp.is_list());
self.nonce = rlp.val_at(*offset)?;
*offset += 1;
self.gas_price = Some(rlp.val_at(*offset)?);
Expand Down

0 comments on commit 35748d0

Please sign in to comment.