Merge pull request #6094
236d2a88
blockchain_stats: make it work on pruned blockchains (moneromooo-monero)
This commit is contained in:
commit
78d4d5ab79
|
@ -264,12 +264,12 @@ skip:
|
||||||
{
|
{
|
||||||
throw std::runtime_error("Aborting: tx == null_hash");
|
throw std::runtime_error("Aborting: tx == null_hash");
|
||||||
}
|
}
|
||||||
if (!db->get_tx_blob(tx_id, bd))
|
if (!db->get_pruned_tx_blob(tx_id, bd))
|
||||||
{
|
{
|
||||||
throw std::runtime_error("Aborting: tx not found");
|
throw std::runtime_error("Aborting: tx not found");
|
||||||
}
|
}
|
||||||
transaction tx;
|
transaction tx;
|
||||||
if (!parse_and_validate_tx_from_blob(bd, tx))
|
if (!parse_and_validate_tx_base_from_blob(bd, tx))
|
||||||
{
|
{
|
||||||
LOG_PRINT_L0("Bad txn from db");
|
LOG_PRINT_L0("Bad txn from db");
|
||||||
return 1;
|
return 1;
|
||||||
|
|
Loading…
Reference in New Issue