wallet_rpc_server: remove detached short payment ids support
This commit is contained in:
parent
31bdf7bd11
commit
45b7df703b
@ -691,13 +691,9 @@ namespace tools
|
|||||||
if (wallet2::parse_long_payment_id(payment_id_str, long_payment_id)) {
|
if (wallet2::parse_long_payment_id(payment_id_str, long_payment_id)) {
|
||||||
cryptonote::set_payment_id_to_tx_extra_nonce(extra_nonce, long_payment_id);
|
cryptonote::set_payment_id_to_tx_extra_nonce(extra_nonce, long_payment_id);
|
||||||
}
|
}
|
||||||
/* or short payment ID */
|
|
||||||
else if (wallet2::parse_short_payment_id(payment_id_str, short_payment_id)) {
|
|
||||||
cryptonote::set_encrypted_payment_id_to_tx_extra_nonce(extra_nonce, short_payment_id);
|
|
||||||
}
|
|
||||||
else {
|
else {
|
||||||
er.code = WALLET_RPC_ERROR_CODE_WRONG_PAYMENT_ID;
|
er.code = WALLET_RPC_ERROR_CODE_WRONG_PAYMENT_ID;
|
||||||
er.message = "Payment id has invalid format: \"" + payment_id_str + "\", expected 16 or 64 character string";
|
er.message = "Payment id has invalid format: \"" + payment_id_str + "\", expected 64 character string";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user