diff --git a/contracts/EggToken.sol b/contracts/EggToken.sol index 4a99757..adb74c1 100644 --- a/contracts/EggToken.sol +++ b/contracts/EggToken.sol @@ -40,7 +40,7 @@ contract EggToken is BEP20('Goose Golden Egg', 'EGG') { /// @notice A record of states for signing / validating signatures mapping (address => uint) public nonces; - /// @notice An event thats emitted when an account changes its delegate + /// @notice An event thats emitted when an account changes its delegate event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate); /// @notice An event thats emitted when a delegate account's vote balance changes @@ -239,4 +239,4 @@ contract EggToken is BEP20('Goose Golden Egg', 'EGG') { assembly { chainId := chainid() } return chainId; } -} \ No newline at end of file +}