mirror of
https://github.com/Instadapp/dsa-connectors-old.git
synced 2024-07-29 22:47:46 +00:00
Merge branch 'master' into curve-vesting-connector-feature
This commit is contained in:
commit
9ca73dfe77
|
@ -74,7 +74,7 @@ contract OneHelpers is Stores, DSMath {
|
|||
/**
|
||||
* @dev Return 1proto Address
|
||||
*/
|
||||
function getOneProtoAddress() virtual internal view returns (address payable) {
|
||||
function getOneProtoAddress() internal virtual view returns (address payable) {
|
||||
return payable(OneProtoMappingInterface(getOneProtoMappingAddress()).oneProtoAddress());
|
||||
}
|
||||
|
||||
|
|
|
@ -82,6 +82,7 @@ contract Helpers is BytesHelper {
|
|||
) public isChief {
|
||||
require(stakingAddress != address(0), "stakingAddress-not-vaild");
|
||||
require(stakingToken != address(0), "stakingToken-not-vaild");
|
||||
require(rewardToken != address(0), "rewardToken-not-vaild");
|
||||
require(bytes(stakingName).length <= 32, "Length-exceeds");
|
||||
bytes32 stakeType = stringToBytes32(stakingName);
|
||||
require(stakingMapping[stakeType].stakingPool == address(0), "StakingPool-already-added");
|
||||
|
|
Loading…
Reference in New Issue
Block a user