예제 #1
0
파일: UserWallet.cs 프로젝트: ProDog/Zoro
 public override IEnumerable<UInt256> GetTransactions()
 {
     foreach (UInt256 hash in indexer.GetTransactions(accounts.Keys))
         yield return hash;
     lock (unconfirmed)
     {
         foreach (UInt256 hash in unconfirmed.Keys)
             yield return hash;
     }
 }
예제 #2
0
 public override IEnumerable <UInt256> GetTransactions()
 {
     foreach (UInt256 hash in WalletIndexer.GetTransactions(accounts.Keys))
     {
         yield return(hash);
     }
     lock (unconfirmed)
     {
         foreach (UInt256 hash in unconfirmed.Keys)
         {
             yield return(hash);
         }
     }
 }