Skip to content

Commit

Permalink
Change fix for Apply in SwitchC.
Browse files Browse the repository at this point in the history
  • Loading branch information
jam40jeff committed Feb 2, 2018
1 parent 523c276 commit 5a3504f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion c#/src/Sodium/Sodium/Transaction.cs
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ internal void Close(bool usingLocal)
s();
}
}
while (this.prioritizedQueue.Count > 0);
while (this.prioritizedQueue.Count > 0 || this.sampleQueue.Count > 0);

// ReSharper disable once ForCanBeConvertedToForeach
for (int i = 0; i < this.lastQueue.Count; i++)
Expand Down

0 comments on commit 5a3504f

Please sign in to comment.