wallet2_api: fix payment ids from integrated addresses being ignored

This commit is contained in:
moneromooo-monero 2016-11-18 19:13:43 +00:00
parent dbf2ab56c5
commit 69b188c4b2
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -605,6 +605,17 @@ PendingTransaction *WalletImpl::createTransaction(const string &dst_addr, const
break;
}
}
else if (has_payment_id) {
std::string extra_nonce;
set_encrypted_payment_id_to_tx_extra_nonce(extra_nonce, payment_id_short);
bool r = add_extra_nonce_to_tx_extra(extra, extra_nonce);
if (!r) {
m_status = Status_Error;
m_errorString = tr("Failed to add short payment id: ") + epee::string_tools::pod_to_hex(payment_id_short);
break;
}
}
//std::vector<tools::wallet2::pending_tx> ptx_vector;