tx_pool: set the "invalid input" bit when check_tx_inputs fails

This commit is contained in:
moneromooo-monero 2017-09-16 11:27:26 +01:00
parent 9236823bf4
commit 0aaaca29a2
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3
1 changed files with 1 additions and 0 deletions

View File

@ -246,6 +246,7 @@ namespace cryptonote
{
LOG_PRINT_L1("tx used wrong inputs, rejected");
tvc.m_verifivation_failed = true;
tvc.m_invalid_input = true;
return false;
}
}else