Type Alias PvfActiveVoteMap

PvfActiveVoteMap: StorageDescriptor<[Key: FixedSizeBinary<32>], {
    age: number;
    causes: Enum<{
        Onboarding: number;
        Upgrade: {
            id: number;
            included_at: number;
            upgrade_strategy: Enum<{
                ApplyAtExpectedBlock: undefined;
                SetGoAheadSignal: undefined;
            }>;
        };
    }>[];
    created_at: number;
    votes_accept: {
        bitsLen: number;
        bytes: Uint8Array;
    };
    votes_reject: {
        bitsLen: number;
        bytes: Uint8Array;
    };
}, true, never>

All currently active PVF pre-checking votes.

Invariant:

  • There are no PVF pre-checking votes that exists in list but not in the set and vice versa.