Skip to content

Commit

Permalink
chore: minor visibility fix (#240)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmlinaric authored May 21, 2024
1 parent f1fc767 commit 4b46129
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion contracts/handlers/fee/BasicFeeHandler.sol
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ contract BasicFeeHandler is IFeeHandler, AccessControl {
/**
@notice Exposes getter function for fee handler type
*/
function feeHandlerType() virtual public returns (string memory) {
function feeHandlerType() virtual public pure returns (string memory) {
return "basic";
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/handlers/fee/PercentageERC20FeeHandlerEVM.sol
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ contract PercentageERC20FeeHandlerEVM is BasicFeeHandler, ERC20Safe {
/**
@notice Exposes getter function for fee handler type
*/
function feeHandlerType() override public returns (string memory) {
function feeHandlerType() override public pure returns (string memory) {
return "percentage";
}

Expand Down
2 changes: 1 addition & 1 deletion contracts/handlers/fee/V2/DynamicFeeHandlerV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ abstract contract DynamicFeeHandlerV2 is IFeeHandler, AccessControl {
/**
@notice Exposes getter function for fee handler type
*/
function feeHandlerType() virtual public returns (string memory) {
function feeHandlerType() virtual public pure returns (string memory) {
return "twap";
}

Expand Down

0 comments on commit 4b46129

Please sign in to comment.