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; } }
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); } } }