Skip to content

Commit

Permalink
Force TestnetThresholdStaking to allow authorization increases.
Browse files Browse the repository at this point in the history
  • Loading branch information
derekpierre committed Sep 25, 2023
1 parent 3ab22f2 commit 3b72f9c
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions contracts/contracts/TestnetThresholdStaking.sol
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,14 @@ contract TestnetThresholdStaking is Ownable {
return 0;
}

function authorizationIncreased(
address _stakingProvider,
uint96 _fromAmount,
uint96 _toAmount
) external onlyOwner {
application.authorizationIncreased(_stakingProvider, _fromAmount, _toAmount);
}

function setRoles(
address _stakingProvider,
address _owner,
Expand Down

0 comments on commit 3b72f9c

Please sign in to comment.