使用json-rpc-cpp库,我正在使用钱包 RPC创建一个 EOS 钱包。
HttpClient *temp = new HttpClient("http://127.0.0.1:30031/v1/wallet/create");
string res;
string str = "testwallet1";
temp->SendRPCMessage(str, res);
cout<<"res : "<<res<<endl;
它正在成功创建钱包,但之后我收到以下异常。
unknown file: Failure
C++ exception with description "Exception -32603 : INTERNAL_ERROR: : "PW5JcEu7jTXd7XUYLWkPuCUbr1pqBhusqRFfhSVToqUNcDuZ3oeYK"" thrown in the test body.
我发现HttpClient
收到 201 响应代码。我不知道如何避免这种异常。有谁有想法吗?