Skip to content

Commit

Permalink
Make decimals() virtual
Browse files Browse the repository at this point in the history
  • Loading branch information
garyghayrat committed Jan 22, 2025
1 parent 09e1d5b commit 8cdbce8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solidity/contracts/token/HypERC20.sol
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ contract HypERC20 is ERC20Upgradeable, TokenRouter {
_MailboxClient_initialize(_hook, _interchainSecurityModule, _owner);
}

function decimals() public view override returns (uint8) {
function decimals() public view virtual override returns (uint8) {
return _decimals;
}

Expand Down

0 comments on commit 8cdbce8

Please sign in to comment.