示例#1
0
 public IEnumerable <(uint256 txid, uint index)> GetSpentCoins()
 {
     lock (StateLock)
     {
         return(WaitingList.Concat(Rounds.SelectMany(x => x.CoinsRegistered)).Where(x => !x.Unspent).Select(x => (x.TransactionId, x.Index)).ToArray());
     }
 }