diff options
author | Riccardo Spagni <ric@spagni.net> | 2015-10-30 09:57:35 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2015-10-30 09:57:41 +0200 |
commit | 62b0984e65822c91992d6e081e73c8ca228180e6 (patch) | |
tree | cb34308b6e2ead8b8d3c0990b516e5fd41dc6594 /src/wallet/wallet2.h | |
parent | Merge pull request #453 (diff) | |
parent | Fix a possibly-unused warning, and rationalize types (diff) | |
download | monero-62b0984e65822c91992d6e081e73c8ca228180e6.tar.xz |
Merge pull request #455
6df4e67 Fix a possibly-unused warning, and rationalize types (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index a8c7f9b78..91c2cf094 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -213,9 +213,9 @@ namespace tools */ bool is_deprecated() const; void refresh(); - void refresh(uint64_t start_height, size_t & blocks_fetched); - void refresh(uint64_t start_height, size_t & blocks_fetched, bool& received_money); - bool refresh(size_t & blocks_fetched, bool& received_money, bool& ok); + void refresh(uint64_t start_height, uint64_t & blocks_fetched); + void refresh(uint64_t start_height, uint64_t & blocks_fetched, bool& received_money); + bool refresh(uint64_t & blocks_fetched, bool& received_money, bool& ok); bool testnet() const { return m_testnet; } bool restricted() const { return m_restricted; } @@ -318,7 +318,7 @@ namespace tools bool is_tx_spendtime_unlocked(uint64_t unlock_time) const; bool is_transfer_unlocked(const transfer_details& td) const; bool clear(); - void pull_blocks(uint64_t start_height, size_t& blocks_added); + void pull_blocks(uint64_t start_height, uint64_t& blocks_added); uint64_t select_transfers(uint64_t needed_money, bool add_dust, uint64_t dust, std::list<transfer_container::iterator>& selected_transfers); bool prepare_file_names(const std::string& file_path); void process_unconfirmed(const cryptonote::transaction& tx); |