Ejemplo n.º 1
0
 public bool ContainsTransaction(UInt256 hash)
 {
     if (MemPool.ContainsKey(hash))
     {
         return(true);
     }
     return(View.ContainsTransaction(hash));
 }
Ejemplo n.º 2
0
 public bool ContainsTransaction(UInt256 hash)
 {
     if (MemPool.ContainsKey(hash))
     {
         return(true);
     }
     return(NativeContract.Ledger.ContainsTransaction(StoreView, hash));
 }