Skip to content
Snippets Groups Projects
Commit f388acc9 authored by Erdem Erdyniev's avatar Erdem Erdyniev
Browse files

[*] Fixed error message when creating a wallet

parent 10247aaa
No related branches found
No related tags found
3 merge requests!286Release 3.1 15,!285Release 3.1 15,!282bugfix-14884
...@@ -41,8 +41,14 @@ QVariant DapAddWalletCommand::respondToClient(const QVariant &args) ...@@ -41,8 +41,14 @@ QVariant DapAddWalletCommand::respondToClient(const QVariant &args)
} }
else else
{ {
QString failureMessage;
if(resultStr.contains("message:"))
failureMessage = resultStr.split("message:").at(1).split("\n").at(0);
else
failureMessage = resultStr;
resultObj.insert(SUCCESS,QJsonValue(false)); resultObj.insert(SUCCESS,QJsonValue(false));
resultObj.insert(MESSAGE,QJsonValue(resultStr)); resultObj.insert(MESSAGE,QJsonValue(failureMessage));
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment