Skip to content
This repository was archived by the owner on Mar 11, 2025. It is now read-only.

Commit 37ba32f

Browse files
authored
stake-pool-cli: Fix mismatched output fields (#2846)
1 parent ebc91e8 commit 37ba32f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stake-pool/cli/src/output.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -483,9 +483,9 @@ impl From<(Pubkey, StakePool, ValidatorList, Pubkey)> for CliStakePool {
483483
.map(CliStakePoolFee::from),
484484
stake_referral_fee: stake_pool.stake_referral_fee,
485485
sol_deposit_authority: stake_pool.sol_deposit_authority.map(|x| x.to_string()),
486-
sol_deposit_fee: CliStakePoolFee::from(stake_pool.stake_deposit_fee),
486+
sol_deposit_fee: CliStakePoolFee::from(stake_pool.sol_deposit_fee),
487487
sol_referral_fee: stake_pool.sol_referral_fee,
488-
sol_withdraw_authority: stake_pool.sol_deposit_authority.map(|x| x.to_string()),
488+
sol_withdraw_authority: stake_pool.sol_withdraw_authority.map(|x| x.to_string()),
489489
sol_withdrawal_fee: CliStakePoolFee::from(stake_pool.sol_withdrawal_fee),
490490
next_sol_withdrawal_fee: stake_pool
491491
.next_sol_withdrawal_fee

0 commit comments

Comments
 (0)