mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-17 14:04:26 +01:00
Remove useless parameter from CollectSignature
This commit is contained in:
committed by
rockstardev
parent
2427740e79
commit
d40359f12f
@@ -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() });
|
||||
|
||||
Reference in New Issue
Block a user