Skip to content

Commit

Permalink
stake-pool-cli: Fix vote account address in details (solana-labs#2585)
Browse files Browse the repository at this point in the history
  • Loading branch information
joncinque authored Nov 16, 2021
1 parent 4a9c91d commit 688ee42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stake-pool/cli/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -890,7 +890,7 @@ fn command_list(config: &Config, stake_pool_address: &Pubkey) -> CommandResult {
);
let update_required = validator.last_update_epoch != epoch_info.epoch;
CliStakePoolStakeAccountInfo {
vote_account_address: stake_pool_address.to_string(),
vote_account_address: validator.vote_account_address.to_string(),
stake_account_address: stake_account_address.to_string(),
validator_active_stake_lamports: validator.active_stake_lamports,
validator_last_update_epoch: validator.last_update_epoch,
Expand Down

0 comments on commit 688ee42

Please sign in to comment.