Home
last modified time | relevance | path

Searched refs:ExecRPCCommand (Results 1 – 19 of 19) sorted by relevance

/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/qt/
H A Dtoken.cpp21 ExecRPCCommand* call;
22 ExecRPCCommand* send;
45 …d->call = new ExecRPCCommand(Token_NS::PRC_CALL, lstMandatory, lstOptional, QMap<QString, QString>… in Token()
58 …d->send = new ExecRPCCommand(Token_NS::PRC_SENDTO, lstMandatory, lstOptional, QMap<QString, QStrin… in Token()
92 ExecRPCCommand* cmd = sendTo ? d->send : d->call; in execValid()
107 ExecRPCCommand* cmd = sendTo ? d->send : d->call; in exec()
H A Dexecrpccommand.cpp6 ExecRPCCommand::ExecRPCCommand(const QString &command, const QStringList &mandatory, const QStringL… in ExecRPCCommand() function in ExecRPCCommand
15 bool ExecRPCCommand::exec(interfaces::Node &node, const WalletModel* wallet_model, const QMap<QStri… in exec()
104 void ExecRPCCommand::appendParam(QMap<QString, QString> &params, const QString &paramName, const QS… in appendParam()
H A Dadddelegationpage.cpp79 …m_execRPCCommand = new ExecRPCCommand(PRC_COMMAND, lstMandatory, lstOptional, lstTranslations, thi… in AddDelegationPage()
241 ExecRPCCommand::appendParam(lstParams, PARAM_STAKER, stakerAddress); in on_addDelegationClicked()
242 ExecRPCCommand::appendParam(lstParams, PARAM_FEE, QString::number(stakerFee)); in on_addDelegationClicked()
243 ExecRPCCommand::appendParam(lstParams, PARAM_ADDRESS, delegateAddress); in on_addDelegationClicked()
244 ExecRPCCommand::appendParam(lstParams, PARAM_GASLIMIT, QString::number(gasLimit)); in on_addDelegationClicked()
245ExecRPCCommand::appendParam(lstParams, PARAM_GASPRICE, BitcoinUnits::format(unit, gasPrice, false,… in on_addDelegationClicked()
H A Dexecrpccommand.h14 class ExecRPCCommand : public QObject
25 …explicit ExecRPCCommand(const QString& command, const QStringList& mandatory, const QStringList& o…
H A Dsplitutxopage.h7 class ExecRPCCommand; variable
45 ExecRPCCommand *m_execRPCCommand;
H A Dadddelegationpage.h7 class ExecRPCCommand; variable
42 ExecRPCCommand *m_execRPCCommand;
H A Dsplitutxopage.cpp89 …m_execRPCCommand = new ExecRPCCommand(PRC_COMMAND, lstMandatory, lstOptional, lstTranslations, thi… in SplitUTXOPage()
209 ExecRPCCommand::appendParam(lstParams, PARAM_ADDRESS, address); in on_splitCoinsClicked()
210ExecRPCCommand::appendParam(lstParams, PARAM_MIN_VALUE, BitcoinUnits::format(unit, minValue, false… in on_splitCoinsClicked()
211ExecRPCCommand::appendParam(lstParams, PARAM_MAX_VALUE, BitcoinUnits::format(unit, maxValue, false… in on_splitCoinsClicked()
212 ExecRPCCommand::appendParam(lstParams, PARAM_MAX_OUTPUTS, QString::number(maxOutputs)); in on_splitCoinsClicked()
H A Dcreatecontract.cpp85 …m_execRPCCommand = new ExecRPCCommand(PRC_COMMAND, lstMandatory, lstOptional, lstTranslations, thi… in CreateContract()
199 ExecRPCCommand::appendParam(lstParams, PARAM_BYTECODE, bytecode); in on_createContractClicked()
200 ExecRPCCommand::appendParam(lstParams, PARAM_GASLIMIT, QString::number(gasLimit)); in on_createContractClicked()
201ExecRPCCommand::appendParam(lstParams, PARAM_GASPRICE, BitcoinUnits::format(unit, gasPrice, false,… in on_createContractClicked()
202ExecRPCCommand::appendParam(lstParams, PARAM_SENDER, ui->lineEditSenderAddress->currentText()); in on_createContractClicked()
H A Dremovedelegationpage.h7 class ExecRPCCommand; variable
42 ExecRPCCommand *m_execRPCCommand;
H A Dsendtocontract.cpp103 …m_execRPCCommand = new ExecRPCCommand(PRC_COMMAND, lstMandatory, lstOptional, lstTranslations, thi… in SendToContract()
228 ExecRPCCommand::appendParam(lstParams, PARAM_ADDRESS, ui->lineEditContractAddress->text()); in on_sendToContractClicked()
229 ExecRPCCommand::appendParam(lstParams, PARAM_DATAHEX, toDataHex(func, errorMessage)); in on_sendToContractClicked()
231 ExecRPCCommand::appendParam(lstParams, PARAM_AMOUNT, amount); in on_sendToContractClicked()
232 ExecRPCCommand::appendParam(lstParams, PARAM_GASLIMIT, QString::number(gasLimit)); in on_sendToContractClicked()
233ExecRPCCommand::appendParam(lstParams, PARAM_GASPRICE, BitcoinUnits::format(unit, gasPrice, false,… in on_sendToContractClicked()
234ExecRPCCommand::appendParam(lstParams, PARAM_SENDER, ui->lineEditSenderAddress->currentText()); in on_sendToContractClicked()
H A Dcreatecontract.h9 class ExecRPCCommand; variable
52 ExecRPCCommand* m_execRPCCommand;
H A Dcallcontract.h10 class ExecRPCCommand; variable
54 ExecRPCCommand* m_execRPCCommand;
H A Deventlog.h10 class ExecRPCCommand; variable
63 ExecRPCCommand* m_RPCCommand;
H A Dsendtocontract.h10 class ExecRPCCommand; variable
60 ExecRPCCommand* m_execRPCCommand;
H A Dremovedelegationpage.cpp58 …m_execRPCCommand = new ExecRPCCommand(PRC_COMMAND, lstMandatory, lstOptional, lstTranslations, thi… in RemoveDelegationPage()
205 ExecRPCCommand::appendParam(lstParams, PARAM_ADDRESS, address); in on_removeDelegationClicked()
206 ExecRPCCommand::appendParam(lstParams, PARAM_GASLIMIT, QString::number(gasLimit)); in on_removeDelegationClicked()
207ExecRPCCommand::appendParam(lstParams, PARAM_GASPRICE, BitcoinUnits::format(unit, gasPrice, false,… in on_removeDelegationClicked()
H A Dcallcontract.cpp75 …m_execRPCCommand = new ExecRPCCommand(PRC_COMMAND, lstMandatory, lstOptional, lstTranslations, thi… in CallContract()
169 ExecRPCCommand::appendParam(lstParams, PARAM_ADDRESS, ui->lineEditContractAddress->text()); in on_callContractClicked()
170 ExecRPCCommand::appendParam(lstParams, PARAM_DATAHEX, toDataHex(func, errorMessage)); in on_callContractClicked()
171ExecRPCCommand::appendParam(lstParams, PARAM_SENDER, ui->lineEditSenderAddress->currentText()); in on_callContractClicked()
H A Deventlog.cpp48 …m_RPCCommand = new ExecRPCCommand(RPC_SERACH_LOGS, lstMandatory, lstOptional, QMap<QString, QStrin… in EventLog()
/dports/net-p2p/qtum/qtum-mainnet-fastlane-v0.20.3/src/qt/locale/
H A Dbitcoin_ko.ts1469 <name>ExecRPCCommand</name>
H A Dbitcoin_zh_CN.ts1469 <name>ExecRPCCommand</name>