File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 14
14
const std::string CURRENCY_UNIT = " BTC" ; // One formatted unit
15
15
const std::string CURRENCY_ATOM = " sat" ; // One indivisible minimum value unit
16
16
17
+ /* Used to determine type of fee estimation requested */
18
+ enum class FeeEstimateMode {
19
+ UNSET, // !< Use default settings based on other criteria
20
+ ECONOMICAL, // !< Force estimateSmartFee to use non-conservative estimates
21
+ CONSERVATIVE, // !< Force estimateSmartFee to use conservative estimates
22
+ };
23
+
17
24
/* *
18
25
* Fee rate in satoshis per kilobyte: CAmount / kB
19
26
*/
Original file line number Diff line number Diff line change @@ -45,13 +45,6 @@ enum class FeeReason {
45
45
REQUIRED,
46
46
};
47
47
48
- /* Used to determine type of fee estimation requested */
49
- enum class FeeEstimateMode {
50
- UNSET, // !< Use default settings based on other criteria
51
- ECONOMICAL, // !< Force estimateSmartFee to use non-conservative estimates
52
- CONSERVATIVE, // !< Force estimateSmartFee to use conservative estimates
53
- };
54
-
55
48
/* Used to return detailed information about a feerate bucket */
56
49
struct EstimatorBucket
57
50
{
You can’t perform that action at this time.
0 commit comments