wallet_rpc_server: fix short payment id validation in transfer

This commit is contained in:
moneromooo-monero 2017-01-29 16:10:20 +00:00
parent 4629ead8c5
commit 8c8482ac98
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -369,7 +369,7 @@ namespace tools
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)) {
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 {