예제 #1
0
 public Transaction GetTransaction(UInt256 hash)
 {
     if (MemPool.TryGetValue(hash, out Transaction transaction))
     {
         return(transaction);
     }
     return(View.GetTransaction(hash));
 }