fix: mStable USD Sampler and Mixin fix (#238)

* fix: mStable USD Sampler and Mixin fix

* chore: adding mBTC (mStable) pool

* fix linter
This commit is contained in:
Romain Butteaud
2021-05-16 19:43:06 -07:00
committed by GitHub
parent a744acc7bc
commit 234ddb495d
6 changed files with 48 additions and 24 deletions

View File

@@ -31,6 +31,7 @@ interface IMStable {
IERC20TokenV06 sellToken,
IERC20TokenV06 buyToken,
uint256 sellAmount,
uint256 minBoughtAmount,
address recipient
)
external
@@ -59,6 +60,8 @@ contract MixinMStable {
sellToken,
buyToken,
sellAmount,
// Minimum buy amount.
1,
address(this)
);
}