コード例 #1
0
 public bool ContainsTransaction(UInt256 hash)
 {
     if (MemPool.ContainsKey(hash))
     {
         return(true);
     }
     return(View.ContainsTransaction(hash));
 }
コード例 #2
0
 public bool ContainsTransaction(UInt256 hash)
 {
     if (MemPool.ContainsKey(hash))
     {
         return(true);
     }
     return(NativeContract.Ledger.ContainsTransaction(StoreView, hash));
 }