You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the _mint and _burn functions, in the BalanceState.sol, we are requiring the msg.sender to not be a zero address, while it is nearly impossible. It is correct to require the account param to not be the zero address.
Additionally, in the _collectTokens function, in the LiquidStaking.sol, we check the liquidDebt of the msg.sender instead of the staker.
The text was updated successfully, but these errors were encountered:
In the
_mint
and_burn
functions, in theBalanceState.sol
, we are requiring themsg.sender
to not be a zero address, while it is nearly impossible. It is correct to require theaccount
param to not be the zero address.Additionally, in the
_collectTokens
function, in theLiquidStaking.sol
, we check theliquidDebt
of themsg.sender
instead of thestaker
.The text was updated successfully, but these errors were encountered: