remove operator

This commit is contained in:
mingda
2020-11-26 00:41:38 +08:00
parent d6e16d5c52
commit c6f7ac0431
4 changed files with 10 additions and 15 deletions

View File

@@ -18,7 +18,6 @@ contract DPP is DPPTrader {
function init(
address owner,
address maintainer,
address operator,
address baseTokenAddress,
address quoteTokenAddress,
address lpFeeRateModel,
@@ -31,7 +30,6 @@ contract DPP is DPPTrader {
) external {
initOwner(owner);
_MAINTAINER_ = maintainer;
_OPERATOR_ = operator;
_BASE_TOKEN_ = IERC20(baseTokenAddress);
_QUOTE_TOKEN_ = IERC20(quoteTokenAddress);
_LP_FEE_RATE_MODEL_ = IFeeRateModel(lpFeeRateModel);