diff options
author | Pieter Wuille <pieter.wuille@gmail.com> | 2017-01-04 07:31:56 -0800 |
---|---|---|
committer | Pieter Wuille <pieter.wuille@gmail.com> | 2017-01-04 13:18:49 -0800 |
commit | 3641141c8f9bdc68fcc0792ce8842a8e33ea7320 (patch) | |
tree | defc323ff6b727e8b50bbe944b4671119fea30f2 /src/qt/clientmodel.cpp | |
parent | a4bac66cca62a5514579a15d198f3baa80683172 (diff) |
Move tx estimation data out of CCheckPointData
Diffstat (limited to 'src/qt/clientmodel.cpp')
-rw-r--r-- | src/qt/clientmodel.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qt/clientmodel.cpp b/src/qt/clientmodel.cpp index aefcc47255..bb10e49422 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -130,7 +130,7 @@ double ClientModel::getVerificationProgress(const CBlockIndex *tipIn) const LOCK(cs_main); tip = chainActive.Tip(); } - return GuessVerificationProgress(Params().Checkpoints(), tip); + return GuessVerificationProgress(Params().TxData(), tip); } void ClientModel::updateTimer() |