/// @notice Pauses the given application’s eligibility to slash stakes.
/// Besides that stakers can't change authorization to the application.
/// Can be called only by the Panic Button of the particular
/// application. The paused application can not slash stakes until
/// it is approved again by the Governance using `approveApplication`
/// function. Should be used only in case of an emergency.
function pauseApplication(address application)
external
override
onlyPanicButtonOf(application)
I'm opening this issue just to remind us of this aspect. It's not even up to us to decide who should have this role, but we should not forget to set it when we implement slashing for TACo.
From the T staking contract:
I'm opening this issue just to remind us of this aspect. It's not even up to us to decide who should have this role, but we should not forget to set it when we implement slashing for TACo.