hooked up interface to MixinStake

This commit is contained in:
Greg Hysen
2019-05-22 14:50:00 -07:00
parent 93b57445b6
commit 9787cf8296
2 changed files with 5 additions and 8 deletions

View File

@@ -18,7 +18,6 @@
pragma solidity ^0.5.5;
import "./interfaces/IStake.sol";
import "./mixins/MStake.sol";
import "./interfaces/IVault.sol";
import "./libs/LibZrxToken.sol";
@@ -26,8 +25,7 @@ import "@0x/contracts-utils/contracts/src/SafeMath.sol";
contract MixinStake is
//MStake,
//IStake,
MStake,
SafeMath
{
using LibZrxToken for uint256;

View File

@@ -18,9 +18,8 @@
pragma solidity ^0.5.9;
import "../interfaces/IStake.sol";
contract MStake
{
}
contract MStake is
IStake
{}