Merge pull request #1195
697ce1dlibwallet_api: reverted deleted curly brace (Ilya Kitaev)bb9094flibwallet_api: fixes for transaction history (Ilya Kitaev)62b3708libwallet_api: do not signal on sent/received tx until wallet completely synchronized (Ilya Kitaev)11fab41libwallet_api: TransactionHistory: read/write syncchronization (Ilya Kitaev)559f379libwallet_api: test: adjusted mixin_count=4 as it's minumum allowed (Ilya Kitaev)8b0cb8clibwallet_api: some renamings (Ilya Kitaev)db3282cInitialize transaction history if empty (Ilya Kitaev)85f5e73libwallet_api: fixes for transaction history (Ilya Kitaev)
This commit is contained in:
@@ -78,6 +78,7 @@ public:
|
||||
uint64_t blockChainHeight() const;
|
||||
uint64_t daemonBlockChainHeight() const;
|
||||
uint64_t daemonBlockChainTargetHeight() const;
|
||||
bool synchronized() const;
|
||||
bool refresh();
|
||||
void refreshAsync();
|
||||
void setAutoRefreshInterval(int millis);
|
||||
@@ -109,6 +110,7 @@ private:
|
||||
private:
|
||||
friend class PendingTransactionImpl;
|
||||
friend class TransactionHistoryImpl;
|
||||
friend class Wallet2CallbackImpl;
|
||||
|
||||
tools::wallet2 * m_wallet;
|
||||
mutable std::atomic<int> m_status;
|
||||
@@ -134,6 +136,7 @@ private:
|
||||
// so it shouldn't be considered as new and pull blocks (slow-refresh)
|
||||
// instead of pulling hashes (fast-refresh)
|
||||
bool m_recoveringFromSeed;
|
||||
std::atomic<bool> m_synchronized;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user