Skip to content

Commit 2a9a863

Browse files
committed
fixes
1 parent 61a624f commit 2a9a863

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

ethereum/circuits/lib/src/fixtures/mainnet/cancun/small_block/transaction_proof.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,4 +393,4 @@ pub(crate) global proof_input: ProofInput<8, 1000, 6, 1011> = ProofInput {
393393
},
394394
};
395395

396-
global proof_input_serialized: [Field; 5212] = proof_input.serialize();
396+
pub(crate) global proof_input_serialized: [Field; 5212] = proof_input.serialize();

ethereum/circuits/lib/src/fixtures/mainnet/cancun/with_blob/header.nr

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ global encoded_data: [u8; 708] = [
6767
0x00, 0x00, 0x00, 0x00,
6868
];
6969

70-
global block_header_partial: BlockHeaderPartial =
70+
pub(crate) global block_header_partial: BlockHeaderPartial =
7171
BlockHeaderPartial { number, hash, state_root, transactions_root, receipts_root };
72-
global block_header_rlp: BoundedVec<u8, 708> = BoundedVec::from_parts(encoded_data, encoded_length);
72+
pub(crate) global block_header_rlp: BoundedVec<u8, 708> =
73+
BoundedVec::from_parts(encoded_data, encoded_length);

ethereum/circuits/lib/src/fixtures/mainnet/paris/bored_ape_yacht_club/state_proof.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
use crate::merkle_patricia_proofs::proof::{Proof, ProofInput};
22
use crate::serde::Serde;
33

4-
global proof_input: ProofInput<66, 110, 10, 148> = ProofInput {
4+
pub(crate) global proof_input: ProofInput<66, 110, 10, 148> = ProofInput {
55
key: [
66
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
77
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,

ethereum/circuits/lib/src/fixtures/mainnet/paris/usdc_circle/account.nr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use crate::{account::Account, misc::types::Bytes32};
22

3-
global address: [u8; 20] = [
3+
pub(crate) global address: [u8; 20] = [
44
0xa0, 0xb8, 0x69, 0x91, 0xc6, 0x21, 0x8b, 0x36, 0xc1, 0xd1, 0x9d, 0x4a, 0x2e, 0x9e, 0xb0, 0xce,
55
0x36, 0x06, 0xeb, 0x48,
66
];

0 commit comments

Comments
 (0)