diff options
author | Seibart Nedor <rodentrabies@protonmail.com> | 2022-06-11 21:54:52 +0300 |
---|---|---|
committer | Seibart Nedor <rodentrabies@protonmail.com> | 2023-01-17 13:28:53 +0200 |
commit | c0ebb9838252fb187db8719755801758d89651f7 (patch) | |
tree | fe9939c2b499b050121a1a7a84a86ad892992506 /src/wallet/feebumper.h | |
parent | a804f3cfc0b4761b9ca7976e6e4472cd93599bbf (diff) |
wallet: add `outputs` arguments to `bumpfee` and `psbtbumpfee`
Diffstat (limited to 'src/wallet/feebumper.h')
-rw-r--r-- | src/wallet/feebumper.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/wallet/feebumper.h b/src/wallet/feebumper.h index a96871b26f..53cf16e0f1 100644 --- a/src/wallet/feebumper.h +++ b/src/wallet/feebumper.h @@ -51,7 +51,8 @@ Result CreateRateBumpTransaction(CWallet& wallet, CAmount& old_fee, CAmount& new_fee, CMutableTransaction& mtx, - bool require_mine); + bool require_mine, + const std::vector<CTxOut>& outputs); //! Sign the new transaction, //! @return false if the tx couldn't be found or if it was |