object BlockchainElementsGenerator extends BlockchainElementsGenerator
- Alphabetic
- By Inheritance
- BlockchainElementsGenerator
- BlockchainElementsGenerator
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
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
- def block: Gen[Block]
Generates a random Block, note that we limit this to 10 transactions currently
Generates a random Block, note that we limit this to 10 transactions currently
- Definition Classes
- BlockchainElementsGenerator
- def block(txs: Seq[Transaction]): Gen[Block]
Generates a block that contains the given txs, plus some more randomly generated ones
Generates a block that contains the given txs, plus some more randomly generated ones
- Definition Classes
- BlockchainElementsGenerator
- def blockHeader(txs: Vector[Transaction]): Gen[BlockHeader]
Generates a BlockHeader that has a merkle root hash corresponding to the given txs
Generates a BlockHeader that has a merkle root hash corresponding to the given txs
- Definition Classes
- BlockchainElementsGenerator
- def blockHeader(previousBlockHash: DoubleSha256Digest, nBits: UInt32, txs: Vector[Transaction]): Gen[BlockHeader]
Generates a BlockHeader] that has the fields set to the given values
Generates a BlockHeader] that has the fields set to the given values
- Definition Classes
- BlockchainElementsGenerator
- def blockHeader(previousBlockHash: DoubleSha256Digest, nBits: UInt32): Gen[BlockHeader]
Generates a random BlockHeader where you can specify the previousBlockHash and nBits
Generates a random BlockHeader where you can specify the previousBlockHash and nBits
- Definition Classes
- BlockchainElementsGenerator
- def blockHeader(previousBlockHash: DoubleSha256Digest): Gen[BlockHeader]
Generates a random BlockHeader with the specified previousBlockHash
Generates a random BlockHeader with the specified previousBlockHash
- Definition Classes
- BlockchainElementsGenerator
- def blockHeader: Gen[BlockHeader]
Generates a random BlockHeader
Generates a random BlockHeader
- Definition Classes
- BlockchainElementsGenerator
- 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 equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- 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()
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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()
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def validHeaderChain(num: Long, startHeader: BlockHeader): Gen[Seq[BlockHeader]]
- Definition Classes
- BlockchainElementsGenerator
- def validHeaderChain(num: Long): Gen[Seq[BlockHeader]]
Generates a chain of valid headers of the size specified by num, 'valid' means their nBits are the same and each header properly references the previous block header's hash
Generates a chain of valid headers of the size specified by num, 'valid' means their nBits are the same and each header properly references the previous block header's hash
- Definition Classes
- BlockchainElementsGenerator
- 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()