Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnfoo authored and dynco-nym committed Jan 14, 2025
1 parent 4c0b6fd commit 5d141a0
Show file tree
Hide file tree
Showing 6 changed files with 30 additions and 6 deletions.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions nym-node-status-api/nym-node-status-api/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ mod cli;
mod db;
mod http;
mod logging;
mod mixnet_scraper;
mod monitor;
mod node_scraper;
mod scraper;
mod testruns;

#[tokio::main]
Expand All @@ -31,7 +31,7 @@ async fn main() -> anyhow::Result<()> {
let db_pool = storage.pool_owned();

// Start the node scraper
let scraper = scraper::Scraper::new(storage.pool_owned());
let scraper = mixnet_scraper::Scraper::new(storage.pool_owned());
tokio::spawn(async move {
scraper.start().await;
});
Expand Down

0 comments on commit 5d141a0

Please sign in to comment.