diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2023-10-02 15:25:24 -0400 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2023-10-02 15:25:24 -0400 |
| commit | 83d0d2338fa208852123ccd6ad3b32cf20065590 (patch) | |
| tree | 076b1e380dcab1e772872879acc2cec7dfd3fd2b /src/wallet/wallet2.cpp | |
| parent | f9b81a589e19f660ed803f505c8c2a1b309c3bed (diff) | |
| parent | 03d51b7cc453e6dda56d12f8a3a1aaf3cafc3c95 (diff) | |
| download | monzero-core-83d0d2338fa208852123ccd6ad3b32cf20065590.tar.gz monzero-core-83d0d2338fa208852123ccd6ad3b32cf20065590.tar.xz monzero-core-83d0d2338fa208852123ccd6ad3b32cf20065590.zip | |
Merge pull request #9011
03d51b7 wallet2: fix refresh function parameters (selsta)
Diffstat (limited to 'src/wallet/wallet2.cpp')
| -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 a450cc9eb..37e0c4810 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) { |
