Skip to content

Commit

Permalink
Merge pull request #86 from ethstorage/fix_warning
Browse files Browse the repository at this point in the history
fix `just build` warning and last error
  • Loading branch information
blockchaindevsh authored Nov 5, 2024
2 parents a8c36a3 + 22af1e1 commit 7fc9d14
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ var excludeContracts = []string{
"IInitializable", "ILegacyMintableERC20", "IOptimismMintableERC20",
"IOptimismMintableERC721", "KontrolCheatsBase", "IWETH", "IDelayedWETH", "ISuperchainWETH",
"IL2ToL2CrossDomainMessenger", "ICrossL2Inbox", "ISystemConfigInterop", "IResolvedDelegateProxy",
"IERC20Upgradeable",
}

type ContractDefinition struct {
Expand Down
2 changes: 1 addition & 1 deletion packages/contracts-bedrock/src/L2/L1Block.sol
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ contract L1Block is ISemver, IGasToken {
}

/// @notice Returns the size of history hashes.
function historySize() external view returns (uint256) {
function historySize() external pure returns (uint256) {
return HISTORY_SIZE;
}
}
2 changes: 1 addition & 1 deletion packages/contracts-bedrock/src/L2/interfaces/IL1Block.sol
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,6 @@ interface IL1Block {

function __constructor__() external;

function historySize() external view returns (uint256);
function historySize() external pure returns (uint256);
function blockHash(uint256 _historyNumber) external view returns (bytes32);
}
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,6 @@ interface IL1BlockInterop {

function __constructor__() external;

function historySize() external view returns (uint256);
function historySize() external pure returns (uint256);
function blockHash(uint256 _historyNumber) external view returns (bytes32);
}

0 comments on commit 7fc9d14

Please sign in to comment.