@@ -4,7 +4,7 @@ use alloy::{
4
4
consensus:: { ReceiptEnvelope as CRE , ReceiptWithBloom , TxEnvelope } ,
5
5
eips:: BlockNumberOrTag ,
6
6
json_abi:: Event ,
7
- network:: { eip2718:: Encodable2718 , BlockResponse , TransactionResponse } ,
7
+ network:: { eip2718:: Encodable2718 , BlockResponse } ,
8
8
primitives:: { Address , Log , LogData , B256 } ,
9
9
providers:: { Provider , RootProvider } ,
10
10
rlp:: { Decodable , Encodable as AlloyEncodable } ,
@@ -635,10 +635,7 @@ impl BlockUtil {
635
635
_ => panic ! ( "aie" ) ,
636
636
} ;
637
637
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 ( ) ) ;
642
639
643
640
let body_rlp = receipt_primitive. encoded_2718 ( ) ;
644
641
@@ -705,7 +702,7 @@ mod test {
705
702
use std:: str:: FromStr ;
706
703
707
704
use alloy:: {
708
- network:: TransactionBuilder ,
705
+ network:: { TransactionBuilder , TransactionResponse } ,
709
706
node_bindings:: Anvil ,
710
707
primitives:: { Bytes , Log , U256 } ,
711
708
providers:: { ext:: AnvilApi , Provider , ProviderBuilder } ,
0 commit comments