class BlockBody
(source)
An Ethereum block body.
BlockBody(transactions: MutableList<Transaction>, ommers: MutableList<BlockHeader>)
Creates a new block body. |
fun equals(other: Any?): Boolean |
|
static fun fromBytes(encoded: Bytes): BlockBody
Deserialize a block body from RLP encoded bytes. |
|
fun hashCode(): Int |
|
fun ommers(): MutableList<BlockHeader> |
|
static fun readFrom(reader: RLPReader): BlockBody |
|
fun toBytes(): Bytes |
|
fun toString(): String |
|
fun transactions(): MutableList<Transaction> |
|
fun writeTo(writer: RLPWriter): Unit |