wallet_rpc_server: fix make_integrated_address with no payment id

This commit is contained in:
moneromooo-monero 2022-03-11 17:23:19 +00:00
parent d562deaaa9
commit 7dcfccbaaf
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 0 additions and 6 deletions

View File

@ -1760,12 +1760,6 @@ namespace tools
er.message = "Already integrated address";
return false;
}
if (req.payment_id.empty())
{
er.code = WALLET_RPC_ERROR_CODE_WRONG_PAYMENT_ID;
er.message = "Payment ID shouldn't be left unspecified";
return false;
}
res.integrated_address = get_account_integrated_address_as_str(m_wallet->nettype(), info.address, payment_id);
}
res.payment_id = epee::string_tools::pod_to_hex(payment_id);