fix(core/Transaction): remove debug print (#1067)

This commit is contained in:
Jeffrey Quesnelle 2022-03-20 02:58:08 -04:00 committed by GitHub
parent a0d7995f94
commit 35748d0189
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -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)?);