Skip to content

Commit

Permalink
Make minimumAuthorization an attribute.
Browse files Browse the repository at this point in the history
  • Loading branch information
derekpierre committed Sep 23, 2023
1 parent 365418d commit 281b143
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions contracts/contracts/testnet/LynxSet.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ contract LynxRootApplication is Ownable, ITACoChildToRoot {
uint96 authorized;
}

uint96 public immutable minimumAuthorization = 40000000000000000000000;
ITACoRootToChild public childApplication;
mapping(address => StakingProviderInfo) public stakingProviderInfo;
address[] public stakingProviders;
Expand Down Expand Up @@ -129,10 +130,6 @@ contract LynxRootApplication is Ownable, ITACoChildToRoot {
}
}

function minimumAuthorization() external view returns (uint96) {
return 40000000000000000000000; // 40k T
}

//
// Remaining IApplication functions
//
Expand Down

0 comments on commit 281b143

Please sign in to comment.