Skip to content

Commit

Permalink
does label matter?
Browse files Browse the repository at this point in the history
  • Loading branch information
ZumZoom committed Aug 30, 2024
1 parent fcb7610 commit 14bd53c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions test/utils/BaseSetup.sol
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ contract BaseSetup is Test, Utils {
alice = users[0];
bob = users[1];
charlie = users[2];
if (isZkSync) {
if (true) {
vm.label(alice.addr, "Alice");
vm.label(bob.addr, "Bob");
vm.label(charlie.addr, "Charlie");
Expand Down Expand Up @@ -114,8 +114,8 @@ contract BaseSetup is Test, Utils {
usdc = new TokenCustomDecimalsMock("USDC", "USDC", 1000 ether, 6);
inch = new TokenMock("1INCH", "1INCH");
accessToken = new TokenMock("ACCESS", "ACCESS");
if (!isZkSync) {

if (true) {
vm.label(address(dai), "DAI");
vm.label(address(usdc), "USDC");
vm.label(address(inch), "1INCH");
Expand All @@ -138,7 +138,7 @@ contract BaseSetup is Test, Utils {

feeBank = IFeeBank(escrowFactory.FEE_BANK());

if (!isZkSync) {
if (true) {
vm.label(address(escrowFactory), "EscrowFactory");
vm.label(address(escrowSrc), "EscrowSrc");
vm.label(address(escrowDst), "EscrowDst");
Expand Down

0 comments on commit 14bd53c

Please sign in to comment.