mixable transactions must be rct for v3

This commit is contained in:
moneromooo-monero
2016-08-28 21:29:07 +01:00
parent 1017a75460
commit c2ec6d35b9
4 changed files with 33 additions and 6 deletions
+2
View File
@@ -483,6 +483,8 @@ namespace cryptonote
res.reason = "overspend";
if ((res.fee_too_low = tvc.m_fee_too_low))
res.reason = "fee too low";
if ((res.not_rct = tvc.m_not_rct))
res.reason = "tx is not ringct";
return true;
}