mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-21 22:11:48 +01:00
Fix build warnings
This commit is contained in:
parent
b422e79896
commit
0405cda9d6
2 changed files with 2 additions and 2 deletions
|
@ -61,7 +61,7 @@ namespace BTCPayServer.Controllers
|
||||||
}
|
}
|
||||||
|
|
||||||
[HttpGet("{storeId}/lightning/{cryptoCode}/balance")]
|
[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();
|
var store = HttpContext.GetStoreData();
|
||||||
if (store == null)
|
if (store == null)
|
||||||
|
|
|
@ -1364,7 +1364,7 @@ namespace BTCPayServer.Controllers
|
||||||
public string CryptoCode { get; set; }
|
public string CryptoCode { get; set; }
|
||||||
public string Address { get; set; }
|
public string Address { get; set; }
|
||||||
public string PaymentLink { get; set; }
|
public string PaymentLink { get; set; }
|
||||||
public string? ReturnUrl { get; set; }
|
public string ReturnUrl { get; set; }
|
||||||
}
|
}
|
||||||
|
|
||||||
public class SendToAddressResult
|
public class SendToAddressResult
|
||||||
|
|
Loading…
Add table
Reference in a new issue