Skip to content

Commit

Permalink
Merge bitcoin#10093: [Qt] Don't add arguments of sensitive command to…
Browse files Browse the repository at this point in the history
… console window

7278537 [Qt] Don't add arguments of sensitive command to console window (Jonas Schnelli)

Tree-SHA512: 3e5aa19a3f157caf383a0fd7dbf9b0d298d31ddaf8e24e3d1a8b913e19f54f3b69e115f98a21f3e3a14e5ccb368b59de061490ed39718299456a04989f8e3366
  • Loading branch information
jonasschnelli authored and PastaPastaPasta committed Jun 11, 2019
1 parent 06b89d1 commit 634e610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/qt/rpcconsole.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ void RPCConsole::on_lineEdit_returnPressed()

cmdBeforeBrowsing = QString();

message(CMD_REQUEST, cmd);
message(CMD_REQUEST, QString::fromStdString(strFilteredCmd));
Q_EMIT cmdRequest(cmd);

cmd = QString::fromStdString(strFilteredCmd);
Expand Down

0 comments on commit 634e610

Please sign in to comment.