diff options
author | Jacob Brydolf <jacob@brydolf.net> | 2016-10-03 20:47:41 +0200 |
---|---|---|
committer | Jacob Brydolf <jacob@brydolf.net> | 2016-10-03 20:47:41 +0200 |
commit | 65ea8364f894929be24e5753388296f14d9704c8 (patch) | |
tree | 5518fdd227ae281c83fa28268bbec85a3038ed4e /src/wallet/wallet2.h | |
parent | Merge pull request #1124 (diff) | |
download | monero-65ea8364f894929be24e5753388296f14d9704c8.tar.xz |
wallet2_api: added Wallet::daemonBlockChainTargetHeight()
libwallet_api: Wallet::blockChainTargetHeight
Signed-off-by: Jacob Brydolf <jacob@brydolf.net>
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index dd7cd19dc..737a5a9ec 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -401,6 +401,7 @@ namespace tools std::string get_keys_file() const; std::string get_daemon_address() const; uint64_t get_daemon_blockchain_height(std::string& err); + uint64_t get_daemon_blockchain_target_height(std::string& err); std::vector<size_t> select_available_outputs_from_histogram(uint64_t count, bool atleast, bool unlocked, bool trusted_daemon); std::vector<size_t> select_available_outputs(const std::function<bool(const transfer_details &td)> &f); |