mirror of
https://github.com/monero-project/monero.git
synced 2025-08-16 20:50:26 -04:00
consensus: from v12, enforce >= 2 outputs
This commit is contained in:
parent
475481949a
commit
df83ed74e4
8 changed files with 27 additions and 0 deletions
|
@ -343,6 +343,11 @@ namespace rpc
|
|||
if (!res.error_details.empty()) res.error_details += " and ";
|
||||
res.error_details = "tx is not ringct";
|
||||
}
|
||||
if (tvc.m_too_few_outputs)
|
||||
{
|
||||
if (!res.error_details.empty()) res.error_details += " and ";
|
||||
res.error_details = "too few outputs";
|
||||
}
|
||||
if (res.error_details.empty())
|
||||
{
|
||||
res.error_details = "an unknown issue was found with the transaction";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue