public ProofNodeDictHead(MerkleProofElement left, MerkleProofElement right, SearchablePathElement pathElem = null) : base((byte)HashPrefix.NodeDict, left, right)
 {
     this.PathElem = pathElem;
 }
 public ProofValueLeaf(object content, SearchablePathElement pathElem)
 {
     this.Content     = content;
     this.PathElement = pathElem;
 }
Exemplo n.º 3
0
 public SearchablePathElement(SearchablePathElement previous) : base(previous)
 {
 }
Exemplo n.º 4
0
 public PathElement(SearchablePathElement previous)
 {
     this.Previous = previous;
 }
Exemplo n.º 5
0
 public DictPathElement(SearchablePathElement previous, object key) : base(previous)
 {
     this.Key = key;
 }
Exemplo n.º 6
0
 public ArrayPathElement(SearchablePathElement previous, int index) : base(previous)
 {
     this.Index = index;
 }