Merge pull request #12 from InstaDApp/marking-getStakingData-public

have changed getStakingData back to internal to remove dependancy so will merge now as others are small fixes
This commit is contained in:
Lecky Lao 2020-07-19 22:58:11 +10:00 committed by GitHub
commit d82d3a79bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View File

@ -48,7 +48,6 @@ contract StakingHelper is DSMath, Stores {
*/
function getStakingData(string memory stakingName)
internal
virtual
view
returns (
IStakingRewards stakingContract,

View File

@ -1,9 +1,9 @@
pragma solidity ^0.6.0;
pragma experimental ABIEncoderV2;
import { ConnectSynthetixStaking } from "../connectors/synthetix.sol";
import { ConnectStaking } from "../connectors/staking.sol";
contract MockSynthetixStaking is ConnectSynthetixStaking{
contract MockSynthetixStaking is ConnectStaking{
address public synthetixStakingAddr;
address public instaMappingAddr;