init dvm context

This commit is contained in:
mingda
2020-10-24 12:44:51 +08:00
parent 299b67b972
commit dd1cb18cc4
4 changed files with 79 additions and 79 deletions

View File

@@ -11,7 +11,7 @@ pragma experimental ABIEncoderV2;
import {IFeeRateModel} from "../intf/IFeeRateModel.sol";
import {Ownable} from "../lib/Ownable.sol";
contract ConstFeeRateModel is Ownable, IFeeRateModel {
contract NaiveFeeRateModel is Ownable, IFeeRateModel {
uint256 public _FEE_RATE_;
constructor(uint256 feeRate) public {