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.h | |
parent | Merge pull request #9001 (diff) | |
parent | wallet2: fix refresh function parameters (diff) | |
download | monero-83d0d2338fa208852123ccd6ad3b32cf20065590.tar.xz |
Merge pull request #9011
03d51b7 wallet2: fix refresh function parameters (selsta)
Diffstat (limited to '')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
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; } |