aboutsummaryrefslogtreecommitdiff
path: root/src/wallet/api/wallet.cpp
diff options
context:
space:
mode:
authorJacob Brydolf <jacob@brydolf.net>2016-11-10 15:36:16 +0100
committerJacob Brydolf <jacob@brydolf.net>2016-11-13 03:36:44 +0100
commit4fca34ddb4d711ad45f4ecb30d74c7d8ebdcba5b (patch)
tree9acd7738856770ae641b85179b5aac1652e7a3de /src/wallet/api/wallet.cpp
parentMerge pull request #1330 (diff)
downloadmonero-4fca34ddb4d711ad45f4ecb30d74c7d8ebdcba5b.tar.xz
Wallet2: calculate approximate blockchain height on offline creation
Wallet API: add approximateBlockChainHeight()
Diffstat (limited to 'src/wallet/api/wallet.cpp')
-rw-r--r--src/wallet/api/wallet.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp
index 134ea601c..d21d8b900 100644
--- a/src/wallet/api/wallet.cpp
+++ b/src/wallet/api/wallet.cpp
@@ -469,7 +469,10 @@ uint64_t WalletImpl::blockChainHeight() const
{
return m_wallet->get_blockchain_current_height();
}
-
+uint64_t WalletImpl::approximateBlockChainHeight() const
+{
+ return m_wallet->get_approximate_blockchain_height();
+}
uint64_t WalletImpl::daemonBlockChainHeight() const
{
std::string err;