sequenceNumber property

int sequenceNumber

Returns the signature associated with this TransactionInput

This property will only hold a value after the sign() method has been called sequenceNumber - The sequenceNumber is supposed to allow a transaction to be updated before being broadcast to the network. At least, that was the original purpose. At present this is only used to indicate whether nLockTime should be honored or ignored. Set this value to UINT_MAX to indicate that transaction's Transaction.nLockTime should be ignored.

Implementation

//    SVSignature get signature => _signature;

/// [sequenceNumber] - The sequenceNumber is supposed to allow a transaction to be updated before being
/// broadcast to the network. At least, that was the original purpose. At present this is only used to
/// indicate whether nLockTime should be honored or ignored. Set this value to [UINT_MAX] to indicate
/// that transaction's [Transaction.nLockTime] should be ignored.
int get sequenceNumber => _sequenceNumber!;
void sequenceNumber=(int seqNumber)

Implementation

void set sequenceNumber(int seqNumber) {
    _sequenceNumber = seqNumber;
}