From ee9d71e9f94ba8571c44c889a70bda77c8961959 Mon Sep 17 00:00:00 2001 From: warptangent Date: Sat, 26 Dec 2015 14:27:35 -0800 Subject: BlockchainDB: skip fixup check if read-only database --- src/blockchain_db/blockchain_db.cpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src/blockchain_db/blockchain_db.cpp') diff --git a/src/blockchain_db/blockchain_db.cpp b/src/blockchain_db/blockchain_db.cpp index 4fa8cce26..0635f2000 100644 --- a/src/blockchain_db/blockchain_db.cpp +++ b/src/blockchain_db/blockchain_db.cpp @@ -199,6 +199,11 @@ void BlockchainDB::show_stats() void BlockchainDB::fixup() { + if (is_read_only()) { + LOG_PRINT_L1("Database is opened read only - skipping fixup check"); + return; + } + // There was a bug that would cause key images for transactions without // any outputs to not be added to the spent key image set. There are two // instances of such transactions, in blocks 202612 and 685498. -- cgit v1.2.3