Refactor(StakeManager) remove unused Account struct

This commit is contained in:
Ricardo Guilherme Schmidt 2024-09-29 17:49:07 -03:00
parent 87ba390162
commit b9a83c9d61
No known key found for this signature in database
GPG Key ID: 54B4454CC123AD17
1 changed files with 0 additions and 11 deletions

View File

@ -57,17 +57,6 @@ contract StakeManager is Ownable {
uint256 epoch;
}
struct Account {
address rewardAddress;
uint256 balance;
uint256 bonusMP;
uint256 totalMP;
uint256 lastMint;
uint256 lockUntil;
uint256 epoch;
uint256 mpLimitEpoch;
}
struct Epoch {
uint256 startTime;
uint256 epochReward;