-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Currently, if a staker is labelled as a cheater, then the staker and delegators (if any) lose all their staked or delegated tokens respectively:
if (isCheater == false) {
from.transfer(delegatedAmount);
} else {
penalty = delegatedAmount;
}
if (isCheater == false) {
staker.transfer(stake);
} else {
penalty = stake;
}
The penalty is too high.
Perhaps 20% for stakers, and 10% for delegators, is more reasonable.
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request