Constructor macro for honsed substatep structures.
Syntax:
(make-honsed-substate [:self-destruct-set <self-destruct-set>] [:log-series <log-series>] [:touched-accounts <touched-accounts>] [:refund-balance <refund-balance>])
This is identical to make-substate, except that we hons the structure we are creating.
This is an ordinary honsing
Macro:
(defmacro make-honsed-substate (&rest args) (std::make-aggregate 'substate args '((:self-destruct-set) (:log-series) (:touched-accounts) (:refund-balance)) 'make-honsed-substate t))