Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions contracts/EggToken.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -239,4 +239,4 @@ contract EggToken is BEP20('Goose Golden Egg', 'EGG') {
assembly { chainId := chainid() }
return chainId;
}
}
}