本文整理汇总了C++中OT_ME::InterpretTransactionMsgReply方法的典型用法代码示例。如果您正苦于以下问题:C++ OT_ME::InterpretTransactionMsgReply方法的具体用法?C++ OT_ME::InterpretTransactionMsgReply怎么用?C++ OT_ME::InterpretTransactionMsgReply使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类OT_ME
的用法示例。
在下文中一共展示了OT_ME::InterpretTransactionMsgReply方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: sendCashierCheque
bool MTSendDlg::sendCashierCheque(int64_t amount, QString toNymId, QString fromAcctId, QString note)
{
QString nsChequeType = QString("voucher");
// ------------------------------------------------------------
if (toNymId.size() == 0) {
qDebug() << QString("Cannot send %1 to an empty nym id, aborting.").arg(nsChequeType);
return false;
}
if (fromAcctId.size() == 0) {
qDebug() << QString("Cannot send %1 from an unknown account id, aborting.").arg(nsChequeType);
return false;
}
if (amount <= 0) {
qDebug() << QString("Why send 0 (or less) units? Aborting send %1.").arg(nsChequeType);
return false;
}
if (amount > MTHome::rawAcctBalance(m_myAcctId)) {
qDebug() << QString("Aborting send %1: Amount is larger than account balance.").arg(nsChequeType);
return false;
}
if (note.isEmpty())
note = tr("From the desktop systray app.");
// ------------------------------------------------------------
std::string str_toNymId (toNymId .toStdString());
std::string str_fromAcctId(fromAcctId.toStdString());
// ------------------------------------------------------------
std::string str_fromNymId(OTAPI_Wrap::GetAccountWallet_NymID (str_fromAcctId));
std::string str_serverId (OTAPI_Wrap::GetAccountWallet_ServerID(str_fromAcctId));
// ------------------------------------------------------------
int64_t SignedAmount = amount;
qDebug() << QString("Sending %1:\n Server:'%2'\n Nym:'%3'\n Acct:'%4'\n ToNym:'%5'\n Amount:'%6'\n Note:'%7'").
arg(nsChequeType).arg(str_serverId.c_str()).arg(str_fromNymId.c_str()).arg(str_fromAcctId.c_str()).
arg(toNymId).arg(SignedAmount).arg(note);
// ------------------------------------------------------------
OT_ME madeEasy;
std::string strAttempt = "withdraw_voucher";
std::string strResponse;
{
MTOverrideCursor theSpinner;
strResponse = madeEasy.withdraw_voucher(str_serverId, str_fromNymId, str_fromAcctId,
str_toNymId, note.toStdString(), SignedAmount);
}
int32_t nInterpretReply = madeEasy.InterpretTransactionMsgReply(str_serverId, str_fromNymId, str_fromAcctId,
strAttempt, strResponse);
if (1 != nInterpretReply) // Failure
{
qDebug() << QString("Failure withdrawing voucher.");
return false;
}
// ---------------------------------------------------------
//else Success!
std::string strLedger = OTAPI_Wrap::Message_GetLedger(strResponse);
if (strLedger.empty())
{
qDebug() << QString("Failed withdrawing voucher: strLedger is empty.");
return false;
}
// ---------------------------------------------------------
std::string strTransReply = OTAPI_Wrap::Ledger_GetTransactionByIndex(str_serverId, str_fromNymId, str_fromAcctId, strLedger, 0); // index 0.
if (strTransReply.empty())
{
qDebug() << QString("Error in withdraw_voucher: strTransReply is unexpectedly null, "
"returned by Ledger_GetTransactionByIndex, argument passed, index 0 and ledger:\n\n%s1\n").
arg(strLedger.c_str());
return false;
}
// ---------------------------------------------------------
std::string strVoucher = OTAPI_Wrap::Transaction_GetVoucher(str_serverId, str_fromNymId, str_fromAcctId, strTransReply);
if (strVoucher.empty())
{
qDebug() << QString("Error in withdraw_voucher: Voucher is unexpectedly empty, returned by Transaction_GetVoucher "
"with strTransReply set to:\n\n%1\n").arg(strTransReply.c_str());
return false;
}
else
{
// Save a copy in my own outpayments box. I don't want to lose this voucher since it uses
// one of my own transaction numbers. (If I later send the voucher to someone, OT is smart
// enough to remove the first copy from outpayments, when adding the second copy.)
//
// Notice how I can send an instrument to myself. This doesn't actually send anything --
// it just puts a copy into my outpayments box for safe-keeping.
//
OT_ME sendToSelf;
sendToSelf.send_user_payment(str_serverId, str_fromNymId, str_fromNymId, strVoucher);
}
// ---------------------------------------------------------
// Download all the intermediary files (account balance, inbox, outbox, etc)
// since they have probably changed from this operation.
//
OT_ME retrieveAcct;
bool bRetrieved = false;
{
//.........这里部分代码省略.........