Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
dennisreimann committed Oct 17, 2022
1 parent 878cbed commit be1c922
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/BTCPayServer.Lightning.LND/LndClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -687,8 +687,7 @@ async Task<OpenChannelResponse> ILightningClient.OpenChannel(OpenChannelRequest
{
req.Sat_per_byte = ((int)openChannelRequest.FeeRate.SatoshiPerByte).ToString();
}
var result = await this.SwaggerClient.OpenChannelSyncAsync(req, cancellation);
result.
await SwaggerClient.OpenChannelSyncAsync(req, cancellation);
return new OpenChannelResponse(OpenChannelResult.Ok);
}
catch (SwaggerException ex) when
Expand Down

0 comments on commit be1c922

Please sign in to comment.