Skip to content

Commit

Permalink
update js configs for integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron Hambly committed Oct 22, 2021
1 parent 8083d69 commit 8c1b556
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions integration_tests/helpers/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,8 @@ function baseEnvs(peerSeeds = [], forceSyncPeers = []) {
TARI_BASE_NODE__LOCALNET__ALLOW_TEST_ADDRESSES: true,
TARI_BASE_NODE__LOCALNET__GRPC_ENABLED: true,
TARI_BASE_NODE__LOCALNET__ENABLE_WALLET: false,
TARI_BASE_NODE__LOCALNET__DNS_SEEDS_NAME_SERVER: "1.1.1.1:53",
TARI_BASE_NODE__LOCALNET__DNS_SEEDS_USE_DNSSEC: "false",
TARI_COMMON__DNS_SEEDS_NAME_SERVER: "1.1.1.1:53",
TARI_COMMON__DNS_SEEDS_USE_DNSSEC: "false",
TARI_BASE_NODE__LOCALNET__BLOCK_SYNC_STRATEGY: "ViaBestChainMetadata",
TARI_BASE_NODE__LOCALNET__ORPHAN_DB_CLEAN_OUT_THRESHOLD: "0",
TARI_BASE_NODE__LOCALNET__MAX_RANDOMX_VMS: "1",
Expand All @@ -108,7 +108,7 @@ function baseEnvs(peerSeeds = [], forceSyncPeers = []) {
envs.TARI_BASE_NODE__LOCALNET__FORCE_SYNC_PEERS = forceSyncPeers.join(",");
}
if (peerSeeds.length > 0) {
envs.TARI_BASE_NODE__LOCALNET__PEER_SEEDS = peerSeeds.join(",");
envs.TARI_COMMON__PEER_SEEDS = peerSeeds.join(",");
}

return envs;
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/helpers/mergeMiningProxyProcess.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ class MergeMiningProxyProcess {
TARI_MERGE_MINING_PROXY__LOCALNET__PROXY_SUBMIT_TO_ORIGIN:
this.submitOrigin,
TARI_MERGE_MINING_PROXY__LOCALNET__monerod_url:
"http://3.104.4.129:18081",
"http://monero-stagenet.exan.tech:38081",
};
const completeEnvs = { ...envs, ...extraEnvs };
const ps = spawn(cmd, args, {
Expand Down

0 comments on commit 8c1b556

Please sign in to comment.