aboutsummaryrefslogtreecommitdiff
path: root/src/policy
diff options
context:
space:
mode:
authorKarl-Johan Alm <karljohan-alm@garage.co.jp>2020-03-04 11:26:42 +0900
committerKarl-Johan Alm <karljohan-alm@garage.co.jp>2020-06-24 16:01:37 +0900
commit6fcf4484302d13bd7739b617470d8c8e31974908 (patch)
tree81f4a32e4f76fe439133476ed31498aa05708cfa /src/policy
parentb188d80c2de9ebb114da5ceea78baa46bde7dff6 (diff)
downloadbitcoin-6fcf4484302d13bd7739b617470d8c8e31974908.tar.xz
rpc/wallet: add two explicit modes to estimate_mode
Diffstat (limited to 'src/policy')
-rw-r--r--src/policy/feerate.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/policy/feerate.h b/src/policy/feerate.h
index 5eb2d84d4b..f532ba7f88 100644
--- a/src/policy/feerate.h
+++ b/src/policy/feerate.h
@@ -19,6 +19,8 @@ enum class FeeEstimateMode {
UNSET, //!< Use default settings based on other criteria
ECONOMICAL, //!< Force estimateSmartFee to use non-conservative estimates
CONSERVATIVE, //!< Force estimateSmartFee to use conservative estimates
+ BTC_KB, //!< Use explicit BTC/kB fee given in coin control
+ SAT_B, //!< Use explicit sat/B fee given in coin control
};
/**