Merge pull request #899
a95a2cb
wallet_rpc_server: add payment id from integrated addresses to extra (moneromooo-monero)
This commit is contained in:
commit
07f1d4e04d
1 changed files with 8 additions and 1 deletions
|
@ -168,6 +168,13 @@ namespace tools
|
||||||
}
|
}
|
||||||
integrated_payment_id = new_payment_id;
|
integrated_payment_id = new_payment_id;
|
||||||
cryptonote::set_encrypted_payment_id_to_tx_extra_nonce(extra_nonce, integrated_payment_id);
|
cryptonote::set_encrypted_payment_id_to_tx_extra_nonce(extra_nonce, integrated_payment_id);
|
||||||
|
|
||||||
|
/* Append Payment ID data into extra */
|
||||||
|
if (!cryptonote::add_extra_nonce_to_tx_extra(extra, extra_nonce)) {
|
||||||
|
er.code = WALLET_RPC_ERROR_CODE_WRONG_PAYMENT_ID;
|
||||||
|
er.message = "Something went wrong with integrated payment_id.";
|
||||||
|
return false;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -197,7 +204,7 @@ namespace tools
|
||||||
/* Append Payment ID data into extra */
|
/* Append Payment ID data into extra */
|
||||||
if (!cryptonote::add_extra_nonce_to_tx_extra(extra, extra_nonce)) {
|
if (!cryptonote::add_extra_nonce_to_tx_extra(extra, extra_nonce)) {
|
||||||
er.code = WALLET_RPC_ERROR_CODE_WRONG_PAYMENT_ID;
|
er.code = WALLET_RPC_ERROR_CODE_WRONG_PAYMENT_ID;
|
||||||
er.message = "Something went wront with payment_id. Please check its format: \"" + payment_id_str + "\", expected 64-character string";
|
er.message = "Something went wrong with payment_id. Please check its format: \"" + payment_id_str + "\", expected 64-character string";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue