This commit is contained in:
Ricardo Guilherme Schmidt 2023-06-26 12:30:48 -03:00
parent 6bf8d66221
commit ff4bdf65f3
No known key found for this signature in database
GPG Key ID: 3F95A3AD0B607030

View File

@ -111,7 +111,7 @@ contract StakeManager is Ownable {
Account memory account = accounts[msg.sender];
delete accounts[msg.sender];
multiplierSupply -= account.multiplier;
stakeSupply -= _account.mount;
stakeSupply -= account.balance;
}
/**