Skip to content

Commit

Permalink
pr feedback yee
Browse files Browse the repository at this point in the history
  • Loading branch information
saucepoint committed Jan 21, 2025
1 parent 492fd3e commit a7b12c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/types/Currency.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,14 @@ import {CustomRevert} from "../../src/libraries/CustomRevert.sol";

contract TestCurrency is Test {
uint256 constant initialERC20Balance = 1000 ether;
address constant otherAddress = address(123456789);
address otherAddress;

Currency nativeCurrency;
Currency erc20Currency;
CurrencyTest currencyTest;

function setUp() public {
otherAddress = makeAddr("otherAddress");
currencyTest = new CurrencyTest();
vm.deal(address(currencyTest), 30 ether);
nativeCurrency = Currency.wrap(address(0));
Expand Down

0 comments on commit a7b12c2

Please # to comment.