mirror of
https://github.com/monero-project/monero.git
synced 2025-07-22 16:10:43 -04:00
Merge pull request #572
b39aae7
Tweak45800a25e9
(hyc)4a5a5ff
blockchain: always stop the ioservice before returning (moneromooo-monero)78b65cf
db_lmdb: safety close db at exit (moneromooo-monero)45800a2
db_lmdb: fix a strdup/delete[] mistmatch (moneromooo-monero)
This commit is contained in:
commit
fd36eea6dd
2 changed files with 11 additions and 3 deletions
|
@ -2109,6 +2109,7 @@ bool Blockchain::check_tx_inputs(const transaction& tx, uint64_t* pmax_used_bloc
|
|||
if(have_tx_keyimg_as_spent(in_to_key.k_image))
|
||||
{
|
||||
LOG_PRINT_L1("Key image already spent in blockchain: " << epee::string_tools::pod_to_hex(in_to_key.k_image));
|
||||
KILL_IOSERVICE();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
@ -2122,6 +2123,7 @@ bool Blockchain::check_tx_inputs(const transaction& tx, uint64_t* pmax_used_bloc
|
|||
if(!itk->second)
|
||||
{
|
||||
LOG_PRINT_L1("Failed ring signature for tx " << get_transaction_hash(tx) << " vin key with k_image: " << in_to_key.k_image << " sig_index: " << sig_index);
|
||||
KILL_IOSERVICE();
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue