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 1414const std::string CURRENCY_UNIT = " BTC" ; // One formatted unit
1515const std::string CURRENCY_ATOM = " sat" ; // One indivisible minimum value unit
1616
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+
1724/* *
1825 * Fee rate in satoshis per kilobyte: CAmount / kB
1926 */
Original file line number Diff line number Diff line change @@ -45,13 +45,6 @@ enum class FeeReason {
4545 REQUIRED,
4646};
4747
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-
5548/* Used to return detailed information about a feerate bucket */
5649struct EstimatorBucket
5750{
You can’t perform that action at this time.
0 commit comments