Merge pull request #3928 from dennisreimann/build-warnings

Fix build warnings
This commit is contained in:
Nicolas Dorier 2022-07-06 12:16:15 +09:00 committed by GitHub
commit 19aaff2345
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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

@ -1359,7 +1359,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