public bool Equals(TxMeta other)
 {
     return(other != null &&
            blockID == other.blockID &&
            blockNumber == other.blockNumber &&
            blockTimestamp == other.blockTimestamp);
 }
Beispiel #2
0
 public TransactionLog(
     string id,
     string origin,
     ulong size,
     TxMeta meta,
     Network chainTag,
     ulong blockRef,
     uint expiration,
     IEnumerable <Clause> clauses,
     ulong nonce,
     byte gasPriceCoef,
     ulong gas,
     string dependsOn
     ) : base(chainTag, blockRef, expiration, clauses, nonce, gasPriceCoef, gas, dependsOn)
 {
     this.id     = id;
     this.origin = origin;
     this.size   = size;
     this.meta   = meta;
 }