Modifying constructor for system-state structures.
(change-system-state x [:validators <validators>] [:network <network>])
This is an often useful alternative to make-system-state.
We construct a new system-state structure that is a copy of
This is an ordinary
Macro:
(defmacro change-system-state (x &rest args) (std::change-aggregate 'system-state x args '((:validators . system-state->validators) (:network . system-state->network)) 'change-system-state 'nil))