|
|
|
@ -25,6 +25,7 @@
@@ -25,6 +25,7 @@
|
|
|
|
|
|
|
|
|
|
#ifdef ENABLE_WALLET |
|
|
|
|
#include <db_cxx.h> |
|
|
|
|
#include <wallet/wallet.h> |
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
#include <QKeyEvent> |
|
|
|
@ -301,6 +302,14 @@ bool RPCConsole::RPCParseCommandLine(std::string &strResult, const std::string &
@@ -301,6 +302,14 @@ bool RPCConsole::RPCParseCommandLine(std::string &strResult, const std::string &
|
|
|
|
|
JSONRPCRequest req; |
|
|
|
|
req.params = RPCConvertValues(stack.back()[0], std::vector<std::string>(stack.back().begin() + 1, stack.back().end())); |
|
|
|
|
req.strMethod = stack.back()[0]; |
|
|
|
|
#ifdef ENABLE_WALLET |
|
|
|
|
// TODO: Move this logic to WalletModel
|
|
|
|
|
if (!vpwallets.empty()) { |
|
|
|
|
// in Qt, use always the wallet with index 0 when running with multiple wallets
|
|
|
|
|
QByteArray encodedName = QUrl::toPercentEncoding(QString::fromStdString(vpwallets[0]->GetName())); |
|
|
|
|
req.URI = "/wallet/"+std::string(encodedName.constData(), encodedName.length()); |
|
|
|
|
} |
|
|
|
|
#endif |
|
|
|
|
lastResult = tableRPC.execute(req); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|