Skip to content

Commit fe2041b

Browse files
chore: remove redundant Bytes conversion in mined_transaction_receipt (#12313)
1 parent d92c89e commit fe2041b

File tree

1 file changed

+1
-1
lines changed
  • crates/anvil/src/eth/backend/mem

1 file changed

+1
-1
lines changed

crates/anvil/src/eth/backend/mem/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3171,7 +3171,7 @@ impl Backend {
31713171
blob_gas_used,
31723172
};
31733173

3174-
Some(MinedTransactionReceipt { inner, out: info.out.map(|o| o.0.into()) })
3174+
Some(MinedTransactionReceipt { inner, out: info.out })
31753175
}
31763176

31773177
/// Returns the blocks receipts for the given number

0 commit comments

Comments
 (0)