mirror of
https://github.com/Instadapp/dsa-connectors-old.git
synced 2024-07-29 22:47:46 +00:00
df61aebc58
formating synthetic.sol and staking.sol; Adding MockInstaMapping; update test;
8 lines
160 B
Solidity
8 lines
160 B
Solidity
pragma solidity ^0.6.0;
|
|
|
|
import { InstaMapping } from "../mapping/staking.sol";
|
|
|
|
contract MockInstaMapping is InstaMapping {
|
|
modifier isChief override {_;}
|
|
}
|