Skip to content

Commit

Permalink
Update BaseIntegrationEnv.java
Browse files Browse the repository at this point in the history
  • Loading branch information
petarTxFusion authored Nov 17, 2024
1 parent e9048c3 commit 2cf2cfc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/io/zksync/integration/BaseIntegrationEnv.java
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,8 @@ public class BaseIntegrationEnv {
protected BaseIntegrationEnv() {
String env = System.getenv("BASE_URL");
IS_ETH_ENV = env == null || env.equalsIgnoreCase("true");
L1_NODE = "http://127.0.0.1:15045";
L2_NODE = IS_ETH_ENV ? "http://127.0.0.1:15100" : "http://127.0.0.1:15200";
L1_NODE = "http://127.0.0.1:8545";
L2_NODE = IS_ETH_ENV ? "http://127.0.0.1:3050" : "http://127.0.0.1:15200";
SALT = Numeric.hexStringToByteArray("0x293328ad84b118194c65a0dc0defdb6483740d3163fd99b260907e15f2e2f642");
ADDRESS = "0x36615Cf349d7F6344891B1e7CA7C72883F5dc049";
RECEIVER = "0xa61464658AfeAf65CccaaFD3a512b69A83B77618";
Expand Down

0 comments on commit 2cf2cfc

Please sign in to comment.