Skip to content

Commit

Permalink
change user stake to total stake (#1006)
Browse files Browse the repository at this point in the history
  • Loading branch information
ost-ptk committed Jun 13, 2024
1 parent 4c827eb commit 5adb184
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export const RedelegateValidatorDropdownInput = ({
validator?.account_info?.info?.owner?.branding?.logo?.png_256 ||
validator?.account_info?.info?.owner?.branding?.logo?.png_1024
}
totalStake={validator.user_stake}
totalStake={validator.total_stake}
delegatorsNumber={validator?.delegators_number}
validatorLabel={t('To validator')}
error={errors?.newValidatorPublicKey}
Expand Down Expand Up @@ -179,7 +179,7 @@ export const RedelegateValidatorDropdownInput = ({
fee={validator.fee}
name={validator?.account_info?.info?.owner?.name}
logo={logo}
totalStake={validator.user_stake}
totalStake={validator.total_stake}
delegatorsNumber={validator?.delegators_number}
handleClick={() => {
setValue('newValidatorPublicKey', validator.public_key);
Expand Down

0 comments on commit 5adb184

Please sign in to comment.