This commit is contained in:
Attens1423
2021-05-12 15:04:14 +08:00
parent a25a35b5dd
commit 59fd11c96c
2 changed files with 2 additions and 2 deletions

View File

@@ -33,12 +33,10 @@ contract CurveUnderlyingAdapter is IDODOAdapter {
}
}
//fromToken == token[0], underlying
function sellBase(address to, address pool, bytes memory moreInfo) external override {
_curveSwap(to, pool, moreInfo);
}
//fromToken == token[1], underlying
function sellQuote(address to, address pool, bytes memory moreInfo) external override {
_curveSwap(to, pool, moreInfo);
}

View File

@@ -1,6 +1,8 @@
/*
Copyright 2020 DODO ZOO.
SPDX-License-Identifier: Apache-2.0
*/
pragma solidity 0.6.9;