File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 2
2
pragma solidity ^ 0.8.0 ;
3
3
4
4
library JBCurrencyIds {
5
- uint256 public constant USD = 1 ;
5
+ uint32 public constant ETH = 1 ;
6
+ uint32 public constant USD = 2 ;
6
7
}
Original file line number Diff line number Diff line change @@ -292,7 +292,7 @@ contract TestMultipleAccessLimits_Local is TestBaseWorkflow {
292
292
293
293
_payoutLimits[1 ] = JBCurrencyAmount ({amount: 1 , currency: _payoutCurrency == 0 ? 0 : _payoutCurrency - 1 });
294
294
295
- _surplusAllowances[0 ] = JBCurrencyAmount ({amount: 1 , currency: 1 });
295
+ _surplusAllowances[0 ] = JBCurrencyAmount ({amount: 1 , currency: JBCurrencyIds.USD });
296
296
297
297
_fundAccessLimitGroup[0 ] = JBFundAccessLimitGroup ({
298
298
terminal: address (__terminal),
@@ -417,7 +417,7 @@ contract TestMultipleAccessLimits_Local is TestBaseWorkflow {
417
417
418
418
_payoutLimits[0 ] = JBCurrencyAmount ({amount: _nativePayoutLimit, currency: _nativeCurrency});
419
419
_payoutLimits[1 ] = JBCurrencyAmount ({amount: _usdPayoutLimit, currency: uint32 (uint160 (address (usdcToken ())))});
420
- _surplusAllowances[0 ] = JBCurrencyAmount ({amount: 1 , currency: 1 });
420
+ _surplusAllowances[0 ] = JBCurrencyAmount ({amount: 1 , currency: JBCurrencyIds.USD });
421
421
_fundAccessLimitGroup[0 ] = JBFundAccessLimitGroup ({
422
422
terminal: address (__terminal),
423
423
token: JBConstants.NATIVE_TOKEN,
You can’t perform that action at this time.
0 commit comments