Skip to content

Commit 2ac4224

Browse files
committed
fix
1 parent 782e50a commit 2ac4224

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/L2/predeploys/L1GasPriceOracle.sol

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ contract L1GasPriceOracle is OwnableBase, IL1GasPriceOracle {
108108
bool public isCurie;
109109

110110
/// @custom:deprecated The penalty threshold parameter is deprecated after the Galileo fork.
111+
// slither-disable-next-line uninitialized-state
111112
uint256 public __penaltyThreshold;
112113

113114
/// @inheritdoc IL1GasPriceOracle
@@ -340,7 +341,7 @@ contract L1GasPriceOracle is OwnableBase, IL1GasPriceOracle {
340341
}
341342

342343
/// @dev Internal function to compute the L1 portion of the fee based on the size of the compressed rlp-
343-
// encoded input transaction, the current L1 base fee, and the various dynamic parameters, after the Galileo fork.
344+
/// encoded input transaction, the current L1 base fee, and the various dynamic parameters, after the Galileo fork.
344345
/// @param _data Signed fully RLP-encoded transaction to get the L1 fee for, compressed using zstd.
345346
/// @return L1 fee that should be paid for the tx
346347
function _getL1FeeGalileo(bytes memory _data) private view returns (uint256) {

0 commit comments

Comments
 (0)