mirror of
https://github.com/feather-wallet/feather.git
synced 2024-11-16 17:27:38 +00:00
fix bounds check
This commit is contained in:
parent
2d609ebad5
commit
c5b46211b8
1 changed files with 1 additions and 1 deletions
|
@ -1664,7 +1664,7 @@ void MainWindow::onTxPoolBacklog(const QVector<quint64> &backlog, quint64 origin
|
|||
}
|
||||
|
||||
if (automatic) {
|
||||
if (backlog.size() >= 1 && backlog[1] >= 2) {
|
||||
if (backlog.size() > 1 && backlog[1] >= 2) {
|
||||
auto button = QMessageBox::question(this, "Transaction Pool Backlog",
|
||||
QString("There is a backlog of %1 blocks (≈ %2 minutes) in the transaction pool "
|
||||
"at the maximum automatic fee level.\n\n"
|
||||
|
|
Loading…
Reference in a new issue