qt, rpc, refactor: Return early in RPCConsole::on_lineEdit_returnPressed

This commit is contained in:
Hennadii Stepanov 2021-03-20 04:59:14 +02:00
parent 5b9c8c9cdd
commit ccf790287c
No known key found for this signature in database
GPG Key ID: 410108112E7EA81F

View File

@ -926,8 +926,10 @@ void RPCConsole::on_lineEdit_returnPressed()
{
QString cmd = ui->lineEdit->text();
if(!cmd.isEmpty())
{
if (cmd.isEmpty()) {
return;
}
std::string strFilteredCmd;
try {
std::string dummy;
@ -942,8 +944,6 @@ void RPCConsole::on_lineEdit_returnPressed()
ui->lineEdit->clear();
cmdBeforeBrowsing = QString();
#ifdef ENABLE_WALLET
WalletModel* wallet_model = ui->WalletSelector->currentData().value<WalletModel*>();
@ -955,7 +955,7 @@ void RPCConsole::on_lineEdit_returnPressed()
}
m_last_wallet_model = wallet_model;
}
#endif
#endif // ENABLE_WALLET
message(CMD_REQUEST, QString::fromStdString(strFilteredCmd));
//: A console message indicating an entered command is currently being executed.
@ -969,15 +969,15 @@ void RPCConsole::on_lineEdit_returnPressed()
// Append command to history
history.append(cmd);
// Enforce maximum history size
while(history.size() > CONSOLE_HISTORY)
while (history.size() > CONSOLE_HISTORY) {
history.removeFirst();
}
// Set pointer to end of history
historyPtr = history.size();
// Scroll console view to end
scrollToEnd();
}
}
void RPCConsole::browseHistory(int offset)
{