File tree 5 files changed +8
-4
lines changed
5 files changed +8
-4
lines changed Original file line number Diff line number Diff line change 27
27
#include < wallet/coincontrol.h>
28
28
#include < wallet/fees.h>
29
29
#include < wallet/psbtwallet.h>
30
+ #include < wallet/wallet.h>
30
31
31
32
#include < QFontMetrics>
32
33
#include < QScrollBar>
Original file line number Diff line number Diff line change 6
6
#define BITCOIN_WALLET_COINCONTROL_H
7
7
8
8
#include < optional.h>
9
+ #include < outputtype.h>
9
10
#include < policy/feerate.h>
10
11
#include < policy/fees.h>
11
12
#include < primitives/transaction.h>
12
- #include < wallet/wallet .h>
13
+ #include < script/standard .h>
13
14
14
15
const int DEFAULT_MIN_DEPTH = 0 ;
15
16
const int DEFAULT_MAX_DEPTH = 9999999 ;
16
17
18
+ // ! Default for -avoidpartialspends
19
+ static constexpr bool DEFAULT_AVOIDPARTIALSPENDS = false ;
20
+
17
21
/* * Coin Control Features. */
18
22
class CCoinControl
19
23
{
Original file line number Diff line number Diff line change 8
8
#include < net.h>
9
9
#include < node/context.h>
10
10
#include < outputtype.h>
11
+ #include < ui_interface.h>
11
12
#include < util/moneystr.h>
12
13
#include < util/system.h>
13
14
#include < util/translation.h>
15
+ #include < wallet/coincontrol.h>
14
16
#include < wallet/wallet.h>
15
17
#include < walletinitinterface.h>
16
18
Original file line number Diff line number Diff line change @@ -71,8 +71,6 @@ static const CAmount WALLET_INCREMENTAL_RELAY_FEE = 5000;
71
71
static const bool DEFAULT_SPEND_ZEROCONF_CHANGE = true ;
72
72
// ! Default for -walletrejectlongchains
73
73
static const bool DEFAULT_WALLET_REJECT_LONG_CHAINS = false ;
74
- // ! Default for -avoidpartialspends
75
- static const bool DEFAULT_AVOIDPARTIALSPENDS = false ;
76
74
// ! -txconfirmtarget default
77
75
static const unsigned int DEFAULT_TX_CONFIRM_TARGET = 6 ;
78
76
// ! -walletrbf default
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ EXPECTED_CIRCULAR_DEPENDENCIES=(
22
22
" qt/sendcoinsdialog -> qt/walletmodel -> qt/sendcoinsdialog"
23
23
" qt/transactiontablemodel -> qt/walletmodel -> qt/transactiontablemodel"
24
24
" txmempool -> validation -> txmempool"
25
- " wallet/coincontrol -> wallet/wallet -> wallet/coincontrol"
26
25
" wallet/fees -> wallet/wallet -> wallet/fees"
27
26
" wallet/wallet -> wallet/walletdb -> wallet/wallet"
28
27
" policy/fees -> txmempool -> validation -> policy/fees"
You can’t perform that action at this time.
0 commit comments