Example #1
0
 public bool TryGetBlockSpentTxes(int blockIndex, out BlockSpentTxes spentTxes)
 {
     CheckTransaction();
     return(blockSpentTxes.TryGetValue(blockIndex, out spentTxes));
 }
Example #2
0
 public bool TryGetBlockUnmintedTxes(UInt256 blockHash, out IImmutableList <UnmintedTx> unmintedTxes)
 {
     CheckTransaction();
     return(blockUnmintedTxes.TryGetValue(blockHash, out unmintedTxes));
 }
Example #3
0
 public bool TryGetHeader(UInt256 blockHash, out ChainedHeader header)
 {
     CheckTransaction();
     return(headers.TryGetValue(blockHash, out header));
 }