Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion l1-contracts/src/core/libraries/rollup/FeeLib.sol
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ uint256 constant MAX_ETH_PER_FEE_ASSET = 1e14;
uint256 constant MAX_FEE_ASSET_PRICE_MODIFIER_BPS = 100;

uint256 constant L1_GAS_PER_CHECKPOINT_PROPOSED = 300_000;
uint256 constant L1_GAS_PER_EPOCH_VERIFIED = 1_000_000;
uint256 constant L1_GAS_PER_EPOCH_VERIFIED = 3_600_000;

uint256 constant MINIMUM_CONGESTION_MULTIPLIER = 1e9;

Expand Down
3 changes: 2 additions & 1 deletion l1-contracts/test/fees/FeeRollup.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,11 @@ import {MinimalFeeModel} from "./MinimalFeeModel.sol";
import {RollupBuilder} from "../builder/RollupBuilder.sol";
import {AttestationLibHelper} from "@test/helper_libraries/AttestationLibHelper.sol";
import {Signature} from "@aztec/shared/libraries/SignatureLib.sol";
import {TestConstants} from "../harnesses/TestConstants.sol";

// solhint-disable comprehensive-interface

uint256 constant MANA_TARGET = 100_000_000;
uint256 constant MANA_TARGET = TestConstants.AZTEC_MANA_TARGET;

contract FeeRollupTest is FeeModelTestPoints, DecoderBase {
using stdStorage for StdStorage;
Expand Down
3 changes: 2 additions & 1 deletion l1-contracts/test/fees/MinimalFeeModel.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
// Copyright 2024 Aztec Labs.
pragma solidity >=0.8.27;

import {TestConstants} from "../harnesses/TestConstants.sol";
import {
FeeLib,
FeeHeaderLib,
Expand Down Expand Up @@ -55,7 +56,7 @@ contract MinimalFeeModel {
uint256 internal constant BLOB_GAS_PER_BLOB = 2 ** 17;
uint256 internal constant GAS_PER_BLOB_POINT_EVALUATION = 50_000;

uint256 internal constant MANA_TARGET = 100_000_000;
uint256 internal constant MANA_TARGET = TestConstants.AZTEC_MANA_TARGET;

Slot public constant LIFETIME = Slot.wrap(5);
Slot public constant LAG = Slot.wrap(2);
Expand Down
Loading
Loading