Merge pull request #6094

236d2a88 blockchain_stats: make it work on pruned blockchains (moneromooo-monero)
pull/235/head
Alexander Blair 4 years ago
commit 78d4d5ab79
No known key found for this signature in database
GPG Key ID: C64552D877C32479

@ -264,12 +264,12 @@ skip:
{
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");
}
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");
return 1;

Loading…
Cancel
Save