diff options
| author | Pieter Wuille <[email protected]> | 2012-09-13 14:33:52 +0200 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2012-10-20 01:54:10 +0200 |
| commit | 66b02c93e69cfeaec6e7fa19a03bfb2649025a56 (patch) | |
| tree | 414db7d5088d03e29963974fce490567e25e8649 /src/qt/clientmodel.cpp | |
| parent | Revert "Merge pull request #1931 from laanwj/2012_10_newicons" (diff) | |
| download | discoin-66b02c93e69cfeaec6e7fa19a03bfb2649025a56.tar.xz discoin-66b02c93e69cfeaec6e7fa19a03bfb2649025a56.zip | |
Move external block import to separate thread
Diffstat (limited to 'src/qt/clientmodel.cpp')
| -rw-r--r-- | src/qt/clientmodel.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index b820d16ab..990b364a9 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -103,6 +103,11 @@ bool ClientModel::inInitialBlockDownload() const return IsInitialBlockDownload(); } +bool ClientModel::isImporting() const +{ + return fImporting; +} + int ClientModel::getNumBlocksOfPeers() const { return GetNumBlocksOfPeers(); |