Class: MemBlock

primitives.MemBlock

new MemBlock(options)

A block object which is essentially a "placeholder" for a full Block object. The v8 garbage collector's head will explode if there is too much data on the javascript heap. Blocks can currently be up to 1mb in size. In the future, they may be 2mb, 8mb, or maybe 20mb, who knows? A MemBlock is an optimization in Bcoin which defers parsing of the serialized transactions (the block Buffer) until the block has passed through the chain queue and is about to enter the chain. This keeps a lot data off of the javascript heap for most of the time a block even exists in memory, and manages to keep a lot of strain off of the garbage collector. Having 500mb of blocks on the js heap would not be a good thing.

Parameters:
Name Type Description
options NakedBlock
Source:

Methods

(static) fromRaw(data) → {MemBlock}

Insantiate a memblock from serialized data.

Parameters:
Name Type Description
data Buffer
Source:
Returns:
Type
MemBlock

(static) isMemBlock(obj) → {Boolean}

Test whether an object is a MemBlock.

Parameters:
Name Type Description
obj Object
Source:
Returns:
Type
Boolean

abbr() → {Buffer}

Serialize the block headers.

Source:
Returns:
Type
Buffer

(private) fromRaw(data)

Inject properties from serialized data.

Parameters:
Name Type Description
data Buffer
Source:

getCoinbaseHeight() → {Number}

Retrieve the coinbase height from the coinbase input script (already extracted in actuality).

Source:
Returns:

height (-1 if not present).

Type
Number

getSize() → {Number}

Get the full block size.

Source:
Returns:
Type
Number

toBlock() → {Block}

Parse the serialized block data and create an actual Block.

Source:
Throws:

Parse error

Returns:
Type
Block

toHeaders() → {Headers}

Convert the block to a headers object.

Source:
Returns:
Type
Headers

toNormal() → {Buffer}

Return serialized block data.

Source:
Returns:
Type
Buffer

toRaw() → {Buffer}

Return serialized block data.

Source:
Returns:
Type
Buffer