diff options
author | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-01-17 16:46:33 +0100 |
---|---|---|
committer | MarcoFalke <*~=`'#}+{/-|&$^_@721217.xyz> | 2023-02-07 11:02:01 +0100 |
commit | faff2ba4f80fad5af63a31559fd4065e631a8166 (patch) | |
tree | 07ee4adfeb36c685a3d29822db9fba13cd962e50 /src/interfaces/node.h | |
parent | 5a80086ec2c15d1cd269e8e354f48ee11e4531eb (diff) |
Remove reindex special case from the progress bar label
Diffstat (limited to 'src/interfaces/node.h')
-rw-r--r-- | src/interfaces/node.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/interfaces/node.h b/src/interfaces/node.h index ce6c44e2bc..7e87d5a523 100644 --- a/src/interfaces/node.h +++ b/src/interfaces/node.h @@ -177,11 +177,8 @@ public: //! Is initial block download. virtual bool isInitialBlockDownload() = 0; - //! Get reindex. - virtual bool getReindex() = 0; - - //! Get importing. - virtual bool getImporting() = 0; + //! Is loading blocks. + virtual bool isLoadingBlocks() = 0; //! Set network active. virtual void setNetworkActive(bool active) = 0; |