Skip to content

Commit 0b1ecd5

Browse files
authored
Merge pull request #233 from Bananapus/jango/eth-currency
eth currency
2 parents 13c85ed + 45a37d0 commit 0b1ecd5

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/libraries/JBCurrencyIds.sol

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
pragma solidity ^0.8.0;
33

44
library JBCurrencyIds {
5-
uint256 public constant USD = 1;
5+
uint32 public constant ETH = 1;
6+
uint32 public constant USD = 2;
67
}

test/TestMultipleAccessLimits.sol

+2-2
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ contract TestMultipleAccessLimits_Local is TestBaseWorkflow {
292292

293293
_payoutLimits[1] = JBCurrencyAmount({amount: 1, currency: _payoutCurrency == 0 ? 0 : _payoutCurrency - 1});
294294

295-
_surplusAllowances[0] = JBCurrencyAmount({amount: 1, currency: 1});
295+
_surplusAllowances[0] = JBCurrencyAmount({amount: 1, currency: JBCurrencyIds.USD});
296296

297297
_fundAccessLimitGroup[0] = JBFundAccessLimitGroup({
298298
terminal: address(__terminal),
@@ -417,7 +417,7 @@ contract TestMultipleAccessLimits_Local is TestBaseWorkflow {
417417

418418
_payoutLimits[0] = JBCurrencyAmount({amount: _nativePayoutLimit, currency: _nativeCurrency});
419419
_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});
421421
_fundAccessLimitGroup[0] = JBFundAccessLimitGroup({
422422
terminal: address(__terminal),
423423
token: JBConstants.NATIVE_TOKEN,

0 commit comments

Comments
 (0)