You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Height (block number) of the block which is currently being validated. */
def HEIGHT: Int
/** Authenticated dynamic dictionary digest representing Utxo state before current state. */
def LastBlockUtxoRootHash: AvlTree
/** A fixed number of last block headers in descending order (first header is the newest one) */
def headers: Coll[Header]
/** Fields of a new block header, that can be predicted by a miner before block's formation */
def preHeader: PreHeader
/** Bytes of encoded miner's public key.
* Same as `preHeader.minerPk.getEncoded`
*/
def minerPubKey: Coll[Byte]
The text was updated successfully, but these errors were encountered:
For the sake of optimizations (see e.g. https://www.ergoforum.org/t/protecting-mempool-from-computationally-heavy-transactions/231 ), it is worth to introduce, similarly to
hasDeserialize
flag, a new flagisUsingBlockchainContext
, which is set when ErgoTree depends on blockchain context, so following fields of context are read there:The text was updated successfully, but these errors were encountered: