Ejemplo n.º 1
0
 public GenericBlockEntry(GenericBlockEntry <T> other) : this(other.RawEntry,
                                                              other.TimeStamp,
                                                              other.Index,
                                                              other.PrevHash,
                                                              other.Hash,
                                                              other.CreateUuid)
 {
 }
Ejemplo n.º 2
0
 public virtual bool IsGreaterThan(GenericBlockEntry <T> other)
 {
     return(this.Index > other.Index && this.TimeStamp > other.TimeStamp);
 }
Ejemplo n.º 3
0
 public SHA512BlockEntry(GenericBlockEntry <T> other) : base(other)
 {
 }