Skip to content

Commit

Permalink
fix(protocol): fix build error (#15973)
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik authored Feb 21, 2024
1 parent 7e1e7a9 commit f53130c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/contracts/L1/libs/LibVerifying.sol
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ library LibVerifying {
});
}

function isConfigValid(TaikoData.Config memory config) public pure returns (bool isValid) {
function isConfigValid(TaikoData.Config memory config) public view returns (bool isValid) {
if (
config.chainId <= 1 || config.chainId == block.chainid //
|| config.blockMaxProposals == 1
Expand Down

0 comments on commit f53130c

Please sign in to comment.