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