diff --git a/ethers-core/src/types/transaction/response.rs b/ethers-core/src/types/transaction/response.rs index a13f1f5a..c59f87cc 100644 --- a/ethers-core/src/types/transaction/response.rs +++ b/ethers-core/src/types/transaction/response.rs @@ -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)?);