Skip to content

Commit

Permalink
L1-299: Fix missing own stake for non nominated validators
Browse files Browse the repository at this point in the history
  • Loading branch information
youPickItUp committed Oct 14, 2024
1 parent 8d68c48 commit 3357504
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/page-staking/src/useSortedTargets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ interface OldLedger {

const EMPTY_PARTIAL: Partial<SortedTargets> = {};
const DEFAULT_FLAGS_ELECTED = { withController: true, withExposure: true, withExposureMeta: true, withPrefs: true };
const DEFAULT_FLAGS_WAITING = { withController: true, withPrefs: true };
const DEFAULT_FLAGS_WAITING = { withController: true, withExposureMeta: true, withPrefs: true };

const OPT_ERA = {
transform: ({ activeEra, eraLength, sessionLength }: DeriveSessionInfo): LastEra => ({
Expand Down

0 comments on commit 3357504

Please sign in to comment.