case class TransactionDb(txIdBE: DoubleSha256DigestBE, transaction: Transaction, unsignedTxIdBE: DoubleSha256DigestBE, unsignedTx: Transaction, wTxIdBEOpt: Option[DoubleSha256DigestBE], totalOutput: CurrencyUnit, numInputs: Int, numOutputs: Int, lockTime: UInt32, blockHashOpt: Option[DoubleSha256DigestBE]) extends TxDB with Product with Serializable
Represents a relevant transaction for the wallet that we should be keeping track of
- txIdBE
Transaction ID
- transaction
Serialized Transaction
- unsignedTxIdBE
Transaction ID of the unsigned transaction
- unsignedTx
Unsigned Transaction. This is useful so we can reconcile what our estimated fees were against our actual fees in the case of ECDSA signature size variability
- wTxIdBEOpt
Witness Transaction ID
- numInputs
Number of inputs in the transaction
- numOutputs
Number of outputs in the transaction
- lockTime
locktime of the transaction
- Alphabetic
- By Inheritance
- TransactionDb
- Serializable
- Product
- Equals
- TxDB
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new TransactionDb(txIdBE: DoubleSha256DigestBE, transaction: Transaction, unsignedTxIdBE: DoubleSha256DigestBE, unsignedTx: Transaction, wTxIdBEOpt: Option[DoubleSha256DigestBE], totalOutput: CurrencyUnit, numInputs: Int, numOutputs: Int, lockTime: UInt32, blockHashOpt: Option[DoubleSha256DigestBE])
- txIdBE
Transaction ID
- transaction
Serialized Transaction
- unsignedTxIdBE
Transaction ID of the unsigned transaction
- unsignedTx
Unsigned Transaction. This is useful so we can reconcile what our estimated fees were against our actual fees in the case of ECDSA signature size variability
- wTxIdBEOpt
Witness Transaction ID
- numInputs
Number of inputs in the transaction
- numOutputs
Number of outputs in the transaction
- lockTime
locktime of the transaction
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val blockHashOpt: Option[DoubleSha256DigestBE]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- val lockTime: UInt32
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
- val numInputs: Int
- val numOutputs: Int
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- val totalOutput: CurrencyUnit
- val transaction: Transaction
- lazy val txId: DoubleSha256Digest
- val txIdBE: DoubleSha256DigestBE
- Definition Classes
- TransactionDb → TxDB
- val unsignedTx: Transaction
- lazy val unsignedTxId: DoubleSha256Digest
- val unsignedTxIdBE: DoubleSha256DigestBE
- val wTxIdBEOpt: Option[DoubleSha256DigestBE]
- lazy val wTxIdOpt: Option[DoubleSha256Digest]
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()