blockchain_stats: make it work on pruned blockchains

It reports the actual size as pruned, however
pull/235/head
moneromooo-monero 5 years ago
parent ff94771b47
commit 236d2a88e2
No known key found for this signature in database
GPG Key ID: 686F07454D6CEFC3

@ -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…
Cancel
Save