Skip to content

Commit

Permalink
remove public on var
Browse files Browse the repository at this point in the history
  • Loading branch information
koloz193 committed Jun 4, 2024
1 parent eb79cc2 commit 2b77c55
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ contract MailboxFacet is ZkSyncHyperchainBase, IMailbox {
string public constant override getName = "MailboxFacet";

/// @dev Era's chainID
uint256 public immutable ERA_CHAIN_ID;
uint256 immutable ERA_CHAIN_ID;

Check failure on line 39 in l1-contracts/contracts/state-transition/chain-deps/facets/Mailbox.sol

View workflow job for this annotation

GitHub Actions / lint

Explicitly mark visibility of state

Check failure on line 39 in l1-contracts/contracts/state-transition/chain-deps/facets/Mailbox.sol

View workflow job for this annotation

GitHub Actions / lint

Explicitly mark visibility of state

Check failure on line 39 in l1-contracts/contracts/state-transition/chain-deps/facets/Mailbox.sol

View workflow job for this annotation

GitHub Actions / lint

Explicitly mark visibility of state

constructor(uint256 _eraChainId) {
ERA_CHAIN_ID = _eraChainId;
Expand Down

0 comments on commit 2b77c55

Please sign in to comment.