fix: type error

This commit is contained in:
letteldream 2023-08-14 09:20:40 -04:00
parent 8e0f883e22
commit 8027823dc9

View File

@ -126,7 +126,7 @@ abstract contract BasicConnector is Events, DSMath, Basic {
require( require(
maxTokenPerShares >= sub(_initalUnderlyingBal, _finalUnderlyingBal), maxTokenPerShares >= sub(_initalUnderlyingBal, _finalUnderlyingBal),
"maxUnderlyingAmt-exceeds" "maxTokenPerShares-exceeds"
); );
setUint(setId, _shareAmt); setUint(setId, _shareAmt);
@ -186,7 +186,7 @@ abstract contract BasicConnector is Events, DSMath, Basic {
require( require(
_maxShares >= sub(_finalVaultBal, _initialVaultBal), _maxShares >= sub(_finalVaultBal, _initialVaultBal),
"minShares-exceeds" "maxShares-exceeds"
); );
setUint(setId, _underlyingAmt); setUint(setId, _underlyingAmt);
@ -251,7 +251,7 @@ abstract contract BasicConnector is Events, DSMath, Basic {
require( require(
_minUnderlyingAmt <= sub(_finalUnderlyingBal, _initalUnderlyingBal), _minUnderlyingAmt <= sub(_finalUnderlyingBal, _initalUnderlyingBal),
"minTokens-exceeds" "_minUnderlyingAmt-exceeds"
); );
setUint(setId, _shareAmt); setUint(setId, _shareAmt);