Skip to content

Commit

Permalink
Enforce default_l1_batch fee account
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcosNicolau committed Sep 3, 2024
1 parent 2bb912a commit 97c5766
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -276,6 +276,8 @@ impl VmTesterBuilder {

pub(crate) fn default_l1_batch(number: L1BatchNumber) -> L1BatchEnv {
let timestamp = 0xabcd;
let bytes = [2; 32];
let fee_account = Account::new(K256PrivateKey::from_bytes(bytes.into()).unwrap());
L1BatchEnv {
previous_batch_hash: None,
number,
Expand All @@ -284,7 +286,7 @@ pub(crate) fn default_l1_batch(number: L1BatchNumber) -> L1BatchEnv {
50_000_000_000, // 50 gwei
250_000_000, // 0.25 gwei
),
fee_account: Address::random(),
fee_account: fee_account.address(),
enforced_base_fee: None,
first_l2_block: L2BlockEnv {
number: 1,
Expand Down

0 comments on commit 97c5766

Please sign in to comment.