BitSharper.StoredBlock.Build C# (CSharp) Method

Build() public method

Creates a new StoredBlock, calculating the additional fields by adding to the values in this block.
public Build ( Block block ) : StoredBlock
block Block
return StoredBlock
        public StoredBlock Build(Block block)
        {
            // Stored blocks track total work done in this chain, because the canonical chain is the one that represents
            // the largest amount of work done not the tallest.
            var chainWork = _chainWork.Add(block.GetWork());
            var height = _height + 1;
            return new StoredBlock(block.CloneAsHeader(), chainWork, height);
        }