Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
pwnfoo committed Dec 2, 2024
1 parent aa239c5 commit 84ba653
Show file tree
Hide file tree
Showing 7 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 84ba653

Please sign in to comment.