Skip to content

Latest commit

 

History

History
265 lines (232 loc) · 7.47 KB

MockRegistryClient.md

File metadata and controls

265 lines (232 loc) · 7.47 KB

MockRegistryClient.sol

View Source: contracts/mock/MockRegistryClient.sol

MockRegistryClient

Contract Members

Constants & Variables

contract IStore public s;

Functions

function (IStore store) public nonpayable

Arguments

Name Type Description
store IStore
Source Code
constructor(IStore store) {
    s = store;
  }

getGovernanceContract

function getGovernanceContract() external view
returns(contract IGovernance)

Arguments

Name Type Description
Source Code
function getGovernanceContract() external view returns (IGovernance) {
    return s.getGovernanceContract();
  }

getPolicyContract

function getPolicyContract() external view
returns(contract IPolicy)

Arguments

Name Type Description
Source Code
function getPolicyContract() external view returns (IPolicy) {
    return s.getPolicyContract();
  }

getBondPoolContract

function getBondPoolContract() external view
returns(contract IBondPool)

Arguments

Name Type Description
Source Code
function getBondPoolContract() external view returns (IBondPool) {
    return s.getBondPoolContract();
  }

Contracts