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

Use clear visibility #97

Open
wants to merge 1 commit into
base: sb-short-term-fee-model
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions contracts/NonceHolder.sol
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ import {DEPLOYER_SYSTEM_CONTRACT} from "./Constants.sol";
* here serve more as a help to users to prevent from doing mistakes, rather than any invariants.
*/
contract NonceHolder is INonceHolder, ISystemContract {
uint256 constant DEPLOY_NONCE_MULTIPLIER = 2 ** 128;
uint256 constant private DEPLOY_NONCE_MULTIPLIER = 2 ** 128;
/// The minNonce can be increased by at 2^32 at a time to prevent it from
/// overflowing beyond 2**128.
uint256 constant MAXIMAL_MIN_NONCE_INCREMENT = 2 ** 32;
uint256 constant private MAXIMAL_MIN_NONCE_INCREMENT = 2 ** 32;

/// RawNonces for accounts are stored in format
/// minNonce + 2^128 * deploymentNonce, where deploymentNonce
Expand Down
Loading