Skip to content

Commit

Permalink
[feat] update default batch fee
Browse files Browse the repository at this point in the history
  • Loading branch information
jiaji-wei committed Mar 25, 2024
1 parent 5def95e commit a0c3cf6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions contracts/v2/PolygonRollupManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ contract PolygonRollupManager is
uint256 internal constant _MAX_BATCH_FEE = 1000 ether;

// Min value batch fee
uint256 internal constant _MIN_BATCH_FEE = 1 gwei;
uint256 internal constant _MIN_BATCH_FEE = 0 gwei;

// Goldilocks prime field
uint256 internal constant _GOLDILOCKS_PRIME_FIELD = 0xFFFFFFFF00000001; // 2 ** 64 - 2 ** 32 + 1
Expand Down Expand Up @@ -398,7 +398,7 @@ contract PolygonRollupManager is
trustedAggregatorTimeout = _trustedAggregatorTimeout;

// Constant deployment variables
_batchFee = 0.1 ether; // 0.1 POL
_batchFee = 0 ether; // 0 POL
verifyBatchTimeTarget = 30 minutes;
multiplierBatchFee = 1002;

Expand Down

0 comments on commit a0c3cf6

Please sign in to comment.