Skip to content

Validator Queue (ι)

Bases: StateComponent

ValidatorQueue has no native STF. STF is delegated to a particular PrivilegedService.

Source code in pyjamaz/state/components.py
169
170
171
172
173
174
175
176
177
class ValidatorQueue(StateComponent):
    """
    ValidatorQueue has no native STF. STF is delegated to a particular PrivilegedService.
    """
    component_id = 7

    def retrieve_state(self) -> ValidatorQueueState:
        value = self.retrieve()
        return ValidatorQueueState.from_jam_bytes(JamBytes(value))