diff --git a/stake-pool/cli/src/output.rs b/stake-pool/cli/src/output.rs index 5eeb81bcdbd..39d85a0bcac 100644 --- a/stake-pool/cli/src/output.rs +++ b/stake-pool/cli/src/output.rs @@ -116,7 +116,7 @@ impl VerboseDisplay for CliStakePool { match &self.preferred_withdraw_validator_vote_address { None => {} Some(s) => { - writeln!(w, "Preferred Withraw Validator: {}", s)?; + writeln!(w, "Preferred Withdraw Validator: {}", s)?; } } writeln!(w, "Epoch Fee: {} of epoch rewards", &self.epoch_fee)?; @@ -197,7 +197,7 @@ impl Display for CliStakePool { match &self.preferred_withdraw_validator_vote_address { None => {} Some(s) => { - writeln!(f, "Preferred Withraw Validator: {}", s)?; + writeln!(f, "Preferred Withdraw Validator: {}", s)?; } } writeln!(f, "Epoch Fee: {} of epoch rewards", &self.epoch_fee)?; diff --git a/stake-pool/py/stake_pool/instructions.py b/stake-pool/py/stake_pool/instructions.py index e5d9199cd6f..493d2251977 100644 --- a/stake-pool/py/stake_pool/instructions.py +++ b/stake-pool/py/stake_pool/instructions.py @@ -368,7 +368,7 @@ class WithdrawStakeParams(NamedTuple): validator_stake: Pubkey """`[w]` Validator or reserve stake account to split""" destination_stake: Pubkey - """`[w]` Unitialized stake account to receive withdrawal""" + """`[w]` Uninitialized stake account to receive withdrawal""" destination_stake_authority: Pubkey """`[]` User account to set as a new withdraw authority""" source_transfer_authority: Pubkey