Skip to content

Commit

Permalink
Use BlockChain<T>.GetStagedTransactionIds
Browse files Browse the repository at this point in the history
  • Loading branch information
earlbread committed Jun 26, 2019
1 parent 50a3fa9 commit 4471741
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Libplanet/Net/Swarm.cs
Original file line number Diff line number Diff line change
Expand Up @@ -998,8 +998,8 @@ private async Task BroadcastTxAsync<T>(
await Task.Run(
() =>
{
List<TxId> txIds = blockChain.Store
.IterateStagedTransactionIds(true)
List<TxId> txIds = blockChain
.GetStagedTransactionIds(true)
.ToList();
if (txIds.Any())
Expand Down

0 comments on commit 4471741

Please sign in to comment.