From 0c32b9c5273a4933bda90aa9eb9b7eace6dcaa14 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Sat, 20 Mar 2021 05:06:32 +0200 Subject: [PATCH] qt, rpc: Accept stop RPC even another command is executing While here, clean up the command input by calling the trimmed function on the input from the command prompt. --- src/qt/rpcconsole.cpp | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/qt/rpcconsole.cpp b/src/qt/rpcconsole.cpp index 1384c8e35af..f9a53e8d603 100644 --- a/src/qt/rpcconsole.cpp +++ b/src/qt/rpcconsole.cpp @@ -924,7 +924,7 @@ void RPCConsole::setMempoolSize(long numberOfTxs, size_t dynUsage) void RPCConsole::on_lineEdit_returnPressed() { - QString cmd = ui->lineEdit->text(); + QString cmd = ui->lineEdit->text().trimmed(); if (cmd.isEmpty()) { return; @@ -942,6 +942,13 @@ void RPCConsole::on_lineEdit_returnPressed() return; } + // A special case allows to request shutdown even a long-running command is executed. + if (cmd == QLatin1String("stop")) { + std::string dummy; + RPCExecuteCommandLine(m_node, dummy, cmd.toStdString()); + return; + } + ui->lineEdit->clear(); #ifdef ENABLE_WALLET