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

Show correct total validator count during validator recovery #6153

Merged
merged 2 commits into from
Jul 25, 2024
Merged
Changes from 1 commit
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
Next Next commit
Show correct total count during validator recovery
  • Loading branch information
dknopik committed Jul 23, 2024
commit b1ef8d86ace8f2b75512d729a771cd1869659fe7
2 changes: 1 addition & 1 deletion account_manager/src/validator/recover.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ pub fn cli_run(matches: &ArgMatches, validator_dir: PathBuf) -> Result<(), Strin
println!(
"{}/{}\tIndex: {}\t0x{}",
index - first_index,
dknopik marked this conversation as resolved.
Show resolved Hide resolved
count - first_index,
count,
dknopik marked this conversation as resolved.
Show resolved Hide resolved
index,
voting_pubkey
);
Expand Down
Loading