Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: add pub key in the dailes notify #3612

Merged
merged 2 commits into from
Nov 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions applications/daily_tests/cron_jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,12 @@ ${logLines.join("\n")}
}

async function runBaseNodeSyncTest(syncType) {
notify(`🚀 ${syncType} basenode sync check has begun 🚀`);
const node_pub_key =
"b0c1f788f137ba0cdc0b61e89ee43b80ebf5cca4136d3229561bf11eba347849";
const node_address = "/ip4/3.8.193.254/tcp/18189";
notify(
`🚀 ${syncType} basenode sync (from ${node_pub_key}) check has begun 🚀`
);

const baseDir = __dirname + "/temp/base-node-sync";

Expand All @@ -97,9 +102,7 @@ async function runBaseNodeSyncTest(syncType) {
log: LOG_FILE,
syncType,
baseDir,
forceSyncPeers: [
"b0c1f788f137ba0cdc0b61e89ee43b80ebf5cca4136d3229561bf11eba347849::/ip4/3.8.193.254/tcp/18189",
],
forceSyncPeers: [`${node_pub_key}::${node_address}`],
});

notify(
Expand Down