TransactionOption enum

When serializing the transaction to hexadecimal it is possible to selectively disable some checks. See Transaction.serialize()

Inheritance

Constructors

TransactionOption()
const

Values

DISABLE_ALL → const TransactionOption

Disables all checks

DISABLE_MORE_OUTPUT_THAN_INPUT → const TransactionOption

Disables checking if the transaction spends more bitcoins than the sum of the input amounts

DISABLE_LARGE_FEES → const TransactionOption

Disables checking for fees that are too large

DISABLE_DUST_OUTPUTS → const TransactionOption

Disables checking if there are no outputs that are dust amounts

DISABLE_FULLY_SIGNED → const TransactionOption

Disables checking if all inputs are fully signed

Properties

hashCode int
The hash code for this object.
no setterinherited
index int
A numeric identifier for the enumerated value.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Constants

values → const List<TransactionOption>
A constant List of the values in this enum, in order of their declaration.