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