Type Alias BatchFile

Source
pub type BatchFile = HashMap<ValidatorPublicKey, Option<Change>>;
Expand description

Structure for batch validator operations from JSON file. Maps validator public keys to their desired state:

  • null means remove the validator
  • {accountKey, address, votes} means add or modify the validator
  • Keys not present in the map are left unchanged

Aliased Typeยง

struct BatchFile { /* private fields */ }