Skip to content

Commit

Permalink
apply prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
leoslr committed Jan 20, 2023
1 parent 91fc068 commit 4897181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/smart-contracts/src/contracts/ERC20SwapToPay.sol
Expand Up @@ -193,7 +193,7 @@ contract ERC20SwapToPay is Ownable {
* @param _newRequestSwapFees new request swap fees
*/
function updateRequestSwapFees(uint256 _newRequestSwapFees) public onlyOwner {
require(_newRequestSwapFees <= 50, "Request swap fees should not exceed 5%");
require(_newRequestSwapFees <= 50, 'Request swap fees should not exceed 5%');
requestSwapFees = _newRequestSwapFees;
}
}

0 comments on commit 4897181

Please sign in to comment.