Skip to content

Commit

Permalink
Change MN Polling to every 40 seconds
Browse files Browse the repository at this point in the history
  • Loading branch information
Liquid369 committed Apr 16, 2020
1 parent 6a227d3 commit 6482e11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/clientmodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ ClientModel::ClientModel(OptionsModel* optionsModel, QObject* parent) : QObject(
pollMnTimer = new QTimer(this);
connect(pollMnTimer, SIGNAL(timeout()), this, SLOT(updateMnTimer()));
// no need to update as frequent as data for balances/txes/blocks
pollMnTimer->start(MODEL_UPDATE_DELAY * 4);
pollMnTimer->start(MODEL_UPDATE_DELAY * 40);

subscribeToCoreSignals();
}
Expand Down

0 comments on commit 6482e11

Please sign in to comment.