Skip to content

Commit

Permalink
fix: minimumCurationDeposit() can be pure in L2Curation
Browse files Browse the repository at this point in the history
  • Loading branch information
pcarranzav committed Nov 10, 2023
1 parent 0c4f850 commit 37e35e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/l2/curation/L2Curation.sol
Original file line number Diff line number Diff line change
Expand Up @@ -451,7 +451,7 @@ contract L2Curation is CurationV2Storage, GraphUpgradeable, IL2Curation {
* @notice Getter for minimum curation deposit
* @return Minimum amount of tokens that must be deposited to mint signal
*/
function minimumCurationDeposit() external view returns (uint256) {
function minimumCurationDeposit() external pure returns (uint256) {
return MINIMUM_CURATION_DEPOSIT;
}

Expand Down

0 comments on commit 37e35e5

Please sign in to comment.