Skip to content

Commit

Permalink
Fix log message with swapped number
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhauner committed Aug 7, 2023
1 parent 1689ed6 commit 3422225
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion book/src/validator-manager-create.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ If successful, the command output will appear like below:
```bash
Running validator manager for mainnet network
Validator client is reachable at http://localhost:5062/ and reports 0 validators
Starting to submit validators 2 to VC, each validator may take several seconds
Starting to submit 2 validators to VC, each validator may take several seconds
Uploaded keystore 1 of 2 to the VC
Uploaded keystore 2 of 2 to the VC
```
Expand Down
2 changes: 1 addition & 1 deletion validator_manager/src/import_validators.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ async fn run<'a>(config: ImportConfig) -> Result<(), String> {
let (http_client, _keystores) = vc_http_client(vc_url.clone(), &vc_token_path).await?;

eprintln!(
"Starting to submit validators {} to VC, each validator may take several seconds",
"Starting to submit {} validators to VC, each validator may take several seconds",
count
);

Expand Down

0 comments on commit 3422225

Please sign in to comment.