diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2018-01-15 12:48:25 +0000 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-01-28 10:52:16 +0900 |
commit | 2f5a9b6bb387f50d0ad7914d323cde33f704434e (patch) | |
tree | 1f47e8cc17b2546cf697965aa5dade97085b39f0 /src/wallet/wallet2.h | |
parent | Merge pull request #3116 (diff) | |
download | monero-2f5a9b6bb387f50d0ad7914d323cde33f704434e.tar.xz |
wallet2: split estimate_backlog to allow for raw fee levels
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index e68531cbf..57ede86c2 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -956,6 +956,7 @@ namespace tools bool is_synced() const; + std::vector<std::pair<uint64_t, uint64_t>> estimate_backlog(const std::vector<std::pair<double, double>> &fee_levels); std::vector<std::pair<uint64_t, uint64_t>> estimate_backlog(uint64_t min_blob_size, uint64_t max_blob_size, const std::vector<uint64_t> &fees); uint64_t get_fee_multiplier(uint32_t priority, int fee_algorithm = -1) const; |