diff options
| author | John Newbery <[email protected]> | 2019-12-15 12:34:03 -0300 |
|---|---|---|
| committer | John Newbery <[email protected]> | 2019-12-15 13:23:30 -0300 |
| commit | 869b6314fd180856b6054fff28b5de994252c54c (patch) | |
| tree | 2dc02dbf6f347591157f3d6c931841bfe5ad2b04 /src/qt/clientmodel.cpp | |
| parent | Merge #17728: rpc: require second argument only for scantxoutset start action (diff) | |
| download | discoin-869b6314fd180856b6054fff28b5de994252c54c.tar.xz discoin-869b6314fd180856b6054fff28b5de994252c54c.zip | |
[qt] remove unused parameter from getWarnings()
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 5b216b270..b84587a99 100644 --- a/src/qt/clientmodel.cpp +++ b/src/qt/clientmodel.cpp @@ -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() |