mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
Merge pull request #3928 from dennisreimann/build-warnings
Fix build warnings
This commit is contained in:
commit
19aaff2345
@ -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)
|
||||||
|
@ -1359,7 +1359,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…
Reference in New Issue
Block a user