Skip to content

Commit f4d4a4b

Browse files
committed
Rebased onto feat/receipt-trie
1 parent fc59d4d commit f4d4a4b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

mp2-common/src/eth.rs

+3-6
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use alloy::{
44
consensus::{ReceiptEnvelope as CRE, ReceiptWithBloom, TxEnvelope},
55
eips::BlockNumberOrTag,
66
json_abi::Event,
7-
network::{eip2718::Encodable2718, BlockResponse, TransactionResponse},
7+
network::{eip2718::Encodable2718, BlockResponse},
88
primitives::{Address, Log, LogData, B256},
99
providers::{Provider, RootProvider},
1010
rlp::{Decodable, Encodable as AlloyEncodable},
@@ -635,10 +635,7 @@ impl BlockUtil {
635635
_ => panic!("aie"),
636636
};
637637

638-
let transaction_primitive = match TxEnvelope::try_from(transaction.clone()) {
639-
Ok(t) => t,
640-
_ => panic!("Couldn't get transaction envelope"),
641-
};
638+
let transaction_primitive = TxEnvelope::from(transaction.clone());
642639

643640
let body_rlp = receipt_primitive.encoded_2718();
644641

@@ -705,7 +702,7 @@ mod test {
705702
use std::str::FromStr;
706703

707704
use alloy::{
708-
network::TransactionBuilder,
705+
network::{TransactionBuilder, TransactionResponse},
709706
node_bindings::Anvil,
710707
primitives::{Bytes, Log, U256},
711708
providers::{ext::AnvilApi, Provider, ProviderBuilder},

0 commit comments

Comments
 (0)