Refactor the LndInvoiceClient which might solve memory leak

This commit is contained in:
nicolas.dorier
2018-07-13 19:45:50 +09:00
parent 22e700a53e
commit 94a6f20a05
6 changed files with 69 additions and 43 deletions

View File

@@ -1662,7 +1662,7 @@ namespace BTCPayServer.Tests
private async Task EventuallyAsync(Func<Task> act)
{
CancellationTokenSource cts = new CancellationTokenSource(20000);
CancellationTokenSource cts = new CancellationTokenSource(20000000);
while (true)
{
try