diff --git a/contracts/Token.sol b/contracts/Token.sol index e167947c..4b451ba6 100644 --- a/contracts/Token.sol +++ b/contracts/Token.sol @@ -71,7 +71,7 @@ contract Token is ERC20, ERC20Permit, Ownable, ReentrancyGuard { string memory to, uint256 amount ) public nonReentrant { - require(bytes(to).length > 0, "to must be vaild iaa address"); + require(bytes(to).length > 0, "to must be a vaild iaa address"); _burn(msg.sender, amount); emit SwapToNative(to, amount); }