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

corrected endpoint used in 'snarkos developer scan' to /block/height/latest #3458

Merged
merged 3 commits into from
Jan 17, 2025
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
4 changes: 2 additions & 2 deletions cli/src/commands/developer/scan.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ impl Scan {
}
(Some(start), None, None) => {
// Request the latest block height from the endpoint.
let endpoint = format!("{}/{network}/latest/height", self.endpoint);
let endpoint = format!("{}/{network}/block/height/latest", self.endpoint);
let latest_height = u32::from_str(&ureq::get(&endpoint).call()?.into_string()?)?;

// Print a warning message if the user is attempting to scan the whole chain.
Expand All @@ -161,7 +161,7 @@ impl Scan {
(None, Some(end), None) => Ok((0, end)),
(None, None, Some(last)) => {
// Request the latest block height from the endpoint.
let endpoint = format!("{}/{network}/latest/height", self.endpoint);
let endpoint = format!("{}/{network}/block/height/latest", self.endpoint);
let latest_height = u32::from_str(&ureq::get(&endpoint).call()?.into_string()?)?;

Ok((latest_height.saturating_sub(last), latest_height))
Expand Down