diff options
author | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2020-03-04 11:26:42 +0900 |
---|---|---|
committer | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2020-06-24 16:01:37 +0900 |
commit | 6fcf4484302d13bd7739b617470d8c8e31974908 (patch) | |
tree | 81f4a32e4f76fe439133476ed31498aa05708cfa /src/policy | |
parent | b188d80c2de9ebb114da5ceea78baa46bde7dff6 (diff) |
rpc/wallet: add two explicit modes to estimate_mode
Diffstat (limited to 'src/policy')
-rw-r--r-- | src/policy/feerate.h | 2 |
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 }; /** |