Submitted by yixxas, also found by joestakey, sahar, pashov, and cccz
Node runners can have all their stake rewards taken by the DAO as commissions can be set to a 100%.
There is no limits on _updateDAORevenueCommission() except not exceeding MODULO, which means it can be set to a 100%.
LiquidStakingManager.sol#L948-L955
This percentage is used to calculate uint256 daoAmount = (_received * daoCommissionPercentage) / MODULO in _calculateCommission().
Remaining is then calculated with uint256 rest = _received - daoAmount, and in this case rest = 0.
When node runner calls claimRewardsAsNodeRunner(), the node runner will receive 0 rewards.
There should be maximum cap on how much commission DAO can take from node runners.
vince0656 (Stakehouse) disputed and commented:
LSDan (judge) commented:
