SignedContract

Tagion SignedContract Includes the contract to be executed and the signatures of all inputs sorted by the dartIndex of the inputs

Members

Variables

contract
Contract contract;

The contract must signed by all inputs

signs
const(Signature)[] signs;

Signature of all inputs

Mixed In Members

From mixin HiBONRecord!(q{ this(const(Signature)[] signs, Contract contract) pure nothrow { this.signs = signs; this.contract = contract; } this(immutable(Signature)[] signs, immutable(Contract) contract) immutable pure nothrow { this.signs = signs; this.contract = contract; } this(const(Document) doc) immutable @trusted { immutable _this=cast(immutable)SignedContract(doc); this.signs=_this.signs; this.contract=_this.contract; } })

recordName
string recordName()

Get the record type name set by @recordType("name")