Skip to content

Commit

Permalink
Merge pull request AleoNet#2341 from AleoHQ/bump/snarkvm-utilities
Browse files Browse the repository at this point in the history
Bump `snarkvm-utilities` to v0.10.2 and update report frequency
  • Loading branch information
howardwu authored Apr 19, 2023
2 parents 2cdecba + 3f0d5f8 commit 9072262
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node/router/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ path = "."
features = [ "test" ]

[dev-dependencies.snarkvm-utilities]
version = "0.10.1"
version = "0.10.2"

[dev-dependencies.tracing-subscriber]
version = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion node/router/src/routing.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ pub trait Routing<N: Network>: P2P + Disconnect + Handshake + Inbound<N> + Outbo
let url = "https://vm.aleo.org/testnet3/report";
let _ = reqwest::Client::new().post(url).json(&report).send().await;
// Sleep for a fixed duration in seconds.
tokio::time::sleep(Duration::from_secs(600)).await;
tokio::time::sleep(Duration::from_secs(6 * 60 * 60)).await;
}
});
}
Expand Down

0 comments on commit 9072262

Please sign in to comment.