Make tx label endpoint not error

This commit is contained in:
Kukks
2022-07-28 15:33:28 +02:00
parent 5ef31a96ea
commit 4be5eb39ff
4 changed files with 19 additions and 6 deletions

View File

@@ -990,11 +990,11 @@ namespace BTCPayServer.Controllers.Greenfield
public override async Task<OnChainWalletTransactionData> PatchOnChainWalletTransaction(string storeId,
string cryptoCode, string transactionId,
PatchOnChainTransactionRequest request, CancellationToken token = default)
PatchOnChainTransactionRequest request, bool force = false,CancellationToken token = default)
{
return GetFromActionResult<OnChainWalletTransactionData>(
await GetController<GreenfieldStoreOnChainWalletsController>().PatchOnChainWalletTransaction(storeId, cryptoCode, transactionId,
request));
request, force));
}
public override async Task<LightningPaymentData> GetLightningPayment(string cryptoCode, string paymentHash,