Skip to content
This repository was archived by the owner on Mar 25, 2024. It is now read-only.

Commit 20a8fb7

Browse files
use cleaner visibility
1 parent 0b238cd commit 20a8fb7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

contracts/NonceHolder.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ import {DEPLOYER_SYSTEM_CONTRACT} from "./Constants.sol";
2525
* here serve more as a help to users to prevent from doing mistakes, rather than any invariants.
2626
*/
2727
contract NonceHolder is INonceHolder, ISystemContract {
28-
uint256 constant DEPLOY_NONCE_MULTIPLIER = 2 ** 128;
28+
uint256 constant private DEPLOY_NONCE_MULTIPLIER = 2 ** 128;
2929
/// The minNonce can be increased by at 2^32 at a time to prevent it from
3030
/// overflowing beyond 2**128.
31-
uint256 constant MAXIMAL_MIN_NONCE_INCREMENT = 2 ** 32;
31+
uint256 constant private MAXIMAL_MIN_NONCE_INCREMENT = 2 ** 32;
3232

3333
/// RawNonces for accounts are stored in format
3434
/// minNonce + 2^128 * deploymentNonce, where deploymentNonce

0 commit comments

Comments
 (0)