mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-10 13:13:27 +01:00
wallet_api: do not override invalid payment id
Instead, return an empty string to mark the error
This commit is contained in:
parent
34fcfcd7cc
commit
2bf65dfb8d
@ -360,7 +360,7 @@ std::string WalletImpl::integratedAddress(const std::string &payment_id) const
|
||||
{
|
||||
crypto::hash8 pid;
|
||||
if (!tools::wallet2::parse_short_payment_id(payment_id, pid)) {
|
||||
pid = crypto::rand<crypto::hash8>();
|
||||
return "";
|
||||
}
|
||||
return m_wallet->get_account().get_public_integrated_address_str(pid, m_wallet->testnet());
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user