File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed
ethereum/circuits/lib/src/verifiers Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -14,13 +14,11 @@ pub(crate) fn assert_receipt_rlp_equals<let MAX_ENCODED_LEN: u32>(
1414 receipt_rlp : Fragment <MAX_ENCODED_LEN , u8 >,
1515 receipt : TxReceiptPartial ,
1616) {
17- println (f"receipt_rlp: { receipt_rlp} " );
1817 let receipt_rlp_list : RlpList <RECEIPT_FIELDS_COUNT > = decode_list (receipt_rlp );
1918 assert (
2019 receipt_rlp_list .len () == RECEIPT_FIELDS_COUNT ,
2120 "Invalid number of fields in receipt RLP" ,
2221 );
23- //println(f"receipt_rlp_list: {receipt_rlp_list}");
2422 if (is_pre_byzantium ) {
2523 receipt_rlp_list .get (STATE_ROOT_INDEX ).assert_eq_bytes32 (
2624 "State root" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ use crate::fixtures::mainnet::{
22 cancun ::{
33 access_list::header:: receipts_root ,
44 small_block ::{
5- header:: number as block_number ,
5+ header ::{ number as block_number , receipts_root as small_block_receipt_root } ,
66 receipt ::{encoded_receipt , receipt , tx_type },
77 receipt_proof:: proof_input ,
88 transaction:: tx_idx ,
@@ -30,7 +30,7 @@ fn test_verify_receipt_success() {
3030 tx_type ,
3131 receipt ,
3232 proof_input ,
33- receipts_root ,
33+ small_block_receipt_root ,
3434 );
3535}
3636
You can’t perform that action at this time.
0 commit comments