diff options
author | S3RK <1466284+S3RK@users.noreply.github.com> | 2022-06-27 09:11:09 +0200 |
---|---|---|
committer | S3RK <1466284+S3RK@users.noreply.github.com> | 2022-06-28 08:54:39 +0200 |
commit | d54c5c8b1b1a38b5b38e6878aea0fa8d6c1ad7e9 (patch) | |
tree | 0ba2083ed146887820accdd715d9f1b31c8adf4b /src/wallet/wallet.h | |
parent | a94659c84ee10ac5915eb5a6b654435183d88521 (diff) |
wallet: use CCoinControl to estimate signature size
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index bf42b3da9e..1cf91d6ef6 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -932,7 +932,7 @@ bool AddWalletSetting(interfaces::Chain& chain, const std::string& wallet_name); //! Remove wallet name from persistent configuration so it will not be loaded on startup. bool RemoveWalletSetting(interfaces::Chain& chain, const std::string& wallet_name); -bool DummySignInput(const SigningProvider& provider, CTxIn &tx_in, const CTxOut &txout, bool use_max_sig); +bool DummySignInput(const SigningProvider& provider, CTxIn &tx_in, const CTxOut &txout, const CCoinControl* coin_control = nullptr); bool FillInputToWeight(CTxIn& txin, int64_t target_weight); } // namespace wallet |