diff options
author | selsta <selsta@sent.at> | 2023-10-01 19:30:17 +0200 |
---|---|---|
committer | selsta <selsta@sent.at> | 2023-10-01 20:56:31 +0200 |
commit | 03d51b7cc453e6dda56d12f8a3a1aaf3cafc3c95 (patch) | |
tree | bdd8ed707e335f813c5f6944e85db113dcd87a4a /src/wallet/wallet2.cpp | |
parent | Merge pull request #8988 (diff) | |
download | monero-03d51b7cc453e6dda56d12f8a3a1aaf3cafc3c95.tar.xz |
wallet2: fix refresh function parameters
max_blocks is last on master branch
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index c5c66d4e5..7d4602dda 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -3919,7 +3919,7 @@ std::shared_ptr<std::map<std::pair<uint64_t, uint64_t>, size_t>> wallet2::create return cache; } //---------------------------------------------------------------------------------------------------- -void wallet2::refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blocks_fetched, bool& received_money, bool check_pool, uint64_t max_blocks, bool try_incremental) +void wallet2::refresh(bool trusted_daemon, uint64_t start_height, uint64_t & blocks_fetched, bool& received_money, bool check_pool, bool try_incremental, uint64_t max_blocks) { if (m_offline) { |