diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-10-28 21:41:41 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-10-31 08:38:06 +0000 |
commit | 18f66f44ef1df99f972e7c48dee4d4e9e5d0ca7e (patch) | |
tree | 2507886c44cea7bd27bb8d0e3e5166ce0c667437 /src/wallet/wallet2.h | |
parent | rpc: add a dynamic fee estimation RPC call (diff) | |
download | monero-18f66f44ef1df99f972e7c48dee4d4e9e5d0ca7e.tar.xz |
wallet: use the dynamic per kB fee
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 39a2a37f1..b6f787019 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -517,6 +517,8 @@ namespace tools uint64_t get_upper_tranaction_size_limit(); std::vector<uint64_t> get_unspent_amounts_vector(); uint64_t get_fee_multiplier(uint32_t priority, bool use_new_fee) const; + uint64_t get_dynamic_per_kb_fee_estimate(); + uint64_t get_per_kb_fee(); float get_output_relatedness(const transfer_details &td0, const transfer_details &td1) const; std::vector<size_t> pick_prefered_rct_inputs(uint64_t needed_money) const; void set_spent(size_t idx, uint64_t height); |