Remove useless parameter from CollectSignature

This commit is contained in:
nicolas.dorier
2025-03-26 10:45:09 +09:00
committed by rockstardev
parent 2427740e79
commit d40359f12f
2 changed files with 6 additions and 11 deletions

View File

@@ -1356,7 +1356,7 @@ namespace BTCPayServer.Controllers
if (vm.SigningContext.PendingTransactionId is not null)
{
var psbt = PSBT.Parse(vm.SigningContext.PSBT, NetworkProvider.GetNetwork<BTCPayNetwork>(walletId.CryptoCode).NBitcoinNetwork);
var pendingTransaction = await _pendingTransactionService.CollectSignature(walletId.CryptoCode, psbt, CancellationToken.None);
var pendingTransaction = await _pendingTransactionService.CollectSignature(psbt, CancellationToken.None);
if (pendingTransaction != null)
return RedirectToAction(nameof(WalletTransactions), new { walletId = walletId.ToString() });