aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/wallet2.h
diff options
context:
space:
mode:
authorselsta <selsta@sent.at>2023-10-01 19:30:17 +0200
committerselsta <selsta@sent.at>2023-10-01 20:56:31 +0200
commit03d51b7cc453e6dda56d12f8a3a1aaf3cafc3c95 (patch)
treebdd8ed707e335f813c5f6944e85db113dcd87a4a /src/wallet/wallet2.h
parentMerge pull request #8988 (diff)
downloadmonero-03d51b7cc453e6dda56d12f8a3a1aaf3cafc3c95.tar.xz
wallet2: fix refresh function parameters
max_blocks is last on master branch
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r--src/wallet/wallet2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h
index 11f55d6d4..877e5afd0 100644
--- a/src/wallet/wallet2.h
+++ b/src/wallet/wallet2.h
@@ -1058,7 +1058,7 @@ private:
bool is_deprecated() const;
void refresh(bool trusted_daemon);
void refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blocks_fetched);
- void refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blocks_fetched, bool& received_money, bool check_pool = true, uint64_t max_blocks = std::numeric_limits<uint64_t>::max(), bool try_incremental = true);
+ void refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blocks_fetched, bool& received_money, bool check_pool = true, bool try_incremental = true, uint64_t max_blocks = std::numeric_limits<uint64_t>::max());
bool refresh(bool trusted_daemon, uint64_t & blocks_fetched, bool& received_money, bool& ok);
void set_refresh_type(RefreshType refresh_type) { m_refresh_type = refresh_type; }