Fix build warnings

This commit is contained in:
Dennis Reimann 2022-07-04 19:05:25 +02:00
parent b422e79896
commit 0405cda9d6
No known key found for this signature in database
GPG key ID: 5009E1797F03F8D0
2 changed files with 2 additions and 2 deletions

View file

@ -61,7 +61,7 @@ namespace BTCPayServer.Controllers
}
[HttpGet("{storeId}/lightning/{cryptoCode}/balance")]
public async Task<IActionResult> LightningBalance(string storeId, string cryptoCode)
public IActionResult LightningBalance(string storeId, string cryptoCode)
{
var store = HttpContext.GetStoreData();
if (store == null)

View file

@ -1364,7 +1364,7 @@ namespace BTCPayServer.Controllers
public string CryptoCode { get; set; }
public string Address { get; set; }
public string PaymentLink { get; set; }
public string? ReturnUrl { get; set; }
public string ReturnUrl { get; set; }
}
public class SendToAddressResult