fix: typo

This commit is contained in:
Dimitri 2022-01-20 13:56:13 +07:00
parent faf608d825
commit cc7f53860c
2 changed files with 3 additions and 3 deletions

View File

@ -48,7 +48,7 @@ abstract contract mStableResolver is Events, Helpers {
path = mUsdToken;
} else {
require(mintedAmount >= _minOut, "mintedAmount < _minOut");
path = imUsdToken
path = imUsdToken;
}
(_eventName, _eventParam) = _deposit(_token, mintedAmount, path);

View File

@ -48,7 +48,7 @@ abstract contract PmStableResolver is Events, Helpers {
path = mUsdToken;
} else {
require(mintedAmount >= _minOut, "mintedAmount < _minOut");
path = imUsdToken
path = imUsdToken;
}
(_eventName, _eventParam) = _deposit(_token, mintedAmount, path);
@ -86,7 +86,7 @@ abstract contract PmStableResolver is Events, Helpers {
_minOut,
address(this)
);
(_eventName, _eventParam) = _deposit(_token, mintedAmount, _path);
}