Skip to content
Prev Previous commit
Next Next commit
fix lint
  • Loading branch information
Amxx authored and JulissaDantes committed Nov 10, 2022
commit ceca7a58fd28bae1ca47f9335b2f873959ce7a4d
1 change: 1 addition & 0 deletions contracts/token/ERC20/extensions/ERC20Votes.sol
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import "../../../governance/utils/Votes.sol";
* _Available since v4.2._
*/
abstract contract ERC20Votes is Votes, ERC20Permit {
// solhint-disable-next-line func-name-mixedcase
function DOMAIN_SEPARATOR() public view virtual override(ERC20Permit, EIP712) returns (bytes32) {
return super.DOMAIN_SEPARATOR();
}
Expand Down
2 changes: 1 addition & 1 deletion contracts/utils/Nonces.sol
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ abstract contract Nonces {
current = nonce.current();
nonce.increment();
}
}
}