Skip to content

Commit

Permalink
Merge pull request btcpayserver#3928 from dennisreimann/build-warnings
Browse files Browse the repository at this point in the history
Fix build warnings
  • Loading branch information
NicolasDorier authored Jul 6, 2022
2 parents 8873c51 + 0405cda commit 19aaff2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion BTCPayServer/Controllers/UIStoresController.Dashboard.cs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public async Task<IActionResult> Dashboard()
}

[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)
Expand Down
2 changes: 1 addition & 1 deletion BTCPayServer/Controllers/UIWalletsController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1359,7 +1359,7 @@ public class WalletReceiveViewModel
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
Expand Down

0 comments on commit 19aaff2

Please sign in to comment.