| 45 | |
| 46 | static bool RPCParseCommandLine(interfaces::Node* node, std::string &strResult, const std::string &strCommand, bool fExecute, std::string * const pstrFilteredOut = nullptr, const WalletModel* wallet_model = nullptr); |
| 47 | static bool RPCExecuteCommandLine(interfaces::Node& node, std::string &strResult, const std::string &strCommand, std::string * const pstrFilteredOut = nullptr, const WalletModel* wallet_model = nullptr) { |
| 48 | return RPCParseCommandLine(&node, strResult, strCommand, true, pstrFilteredOut, wallet_model); |
| 49 | } |
| 50 | |
| 51 | void setClientModel(ClientModel *model = nullptr, int bestblock_height = 0, int64_t bestblock_date = 0, double verification_progress = 0.0); |
| 52 | void addWallet(WalletModel * const walletModel); |
no outgoing calls