mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-06-05 18:52:29 +02:00
[qt] remove unused parameter from getWarnings()
This commit is contained in:
@@ -135,7 +135,7 @@ BitcoinCore::BitcoinCore(interfaces::Node& node) :
|
||||
void BitcoinCore::handleRunawayException(const std::exception *e)
|
||||
{
|
||||
PrintExceptionContinue(e, "Runaway exception");
|
||||
Q_EMIT runawayException(QString::fromStdString(m_node.getWarnings("gui")));
|
||||
Q_EMIT runawayException(QString::fromStdString(m_node.getWarnings()));
|
||||
}
|
||||
|
||||
void BitcoinCore::initialize()
|
||||
@@ -589,10 +589,10 @@ int GuiMain(int argc, char* argv[])
|
||||
}
|
||||
} catch (const std::exception& e) {
|
||||
PrintExceptionContinue(&e, "Runaway exception");
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings("gui")));
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings()));
|
||||
} catch (...) {
|
||||
PrintExceptionContinue(nullptr, "Runaway exception");
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings("gui")));
|
||||
app.handleRunawayException(QString::fromStdString(node->getWarnings()));
|
||||
}
|
||||
return rv;
|
||||
}
|
||||
|
||||
@@ -134,7 +134,7 @@ enum BlockSource ClientModel::getBlockSource() const
|
||||
|
||||
QString ClientModel::getStatusBarWarnings() const
|
||||
{
|
||||
return QString::fromStdString(m_node.getWarnings("gui"));
|
||||
return QString::fromStdString(m_node.getWarnings());
|
||||
}
|
||||
|
||||
OptionsModel *ClientModel::getOptionsModel()
|
||||
|
||||
Reference in New Issue
Block a user