You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@frankli-dev would you be interested in tackling this issue?
A quick way to reproduce the issue would be to import a read only account that has this scenario where its bonded funds are split among multiple validators. Perhaps @Juanma0x can share the nominator in the screenshot?
The staked amount is displayed from src/library/ListItem/Labels/NominationStatus.tsx. It looks like same activeAccountOwnStake is being used, rather than the amount for the single validator.
My initial thoughts would be to store a Record<validator, ownStake> instead of a single activeAccountOwnStake, which is currently persisted to erasStakers state in src/contexts/Staking/index.tsx.
Because big accounts are more likely to be assigned multiple validators for any given era, you can copy almost any of the "staking whales" and add it as "read-only" account in the Staking Dashboard.
@frankli-dev would you be interested in tackling this issue?
A quick way to reproduce the issue would be to import a read only account that has this scenario where its bonded funds are split among multiple validators. Perhaps @Juanma0x can share the nominator in the screenshot?
The staked amount is displayed from src/library/ListItem/Labels/NominationStatus.tsx. It looks like same activeAccountOwnStake is being used, rather than the amount for the single validator.
My initial thoughts would be to store a Record<validator, ownStake> instead of a single activeAccountOwnStake, which is currently persisted to erasStakers state in src/contexts/Staking/index.tsx.
@rossbulat Sure. I didn't check my email though. I couldn't see this notification. I will handle this and will create a pr from https://github.com/frankli-polkadot (my github only for staking dashboard contribution)
When a nominator's balance is split among multiple validators, the dashboard shows the same amount for each validator, which is incorrect.
The text was updated successfully, but these errors were encountered: