Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: check genesis block during startup #3776

Merged
merged 2 commits into from
Feb 1, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 15 additions & 1 deletion base_layer/core/src/chain_storage/blockchain_database.rs
Original file line number Diff line number Diff line change
Expand Up @@ -214,9 +214,9 @@ where B: BlockchainBackend
difficulty_calculator: Arc::new(difficulty_calculator),
disable_add_block_flag: Arc::new(AtomicBool::new(false)),
};
let genesis_block = Arc::new(blockchain_db.consensus_manager.get_genesis_block());
if is_empty {
info!(target: LOG_TARGET, "Blockchain db is empty. Adding genesis block.");
let genesis_block = Arc::new(blockchain_db.consensus_manager.get_genesis_block());
blockchain_db.insert_block(genesis_block.clone())?;
let mut txn = DbTransaction::new();
let body = &genesis_block.block().body;
Expand All @@ -230,6 +230,20 @@ where B: BlockchainBackend
txn.set_horizon_data(kernel_sum, utxo_sum);
blockchain_db.write(txn)?;
blockchain_db.store_pruning_horizon(config.pruning_horizon)?;
} else if !blockchain_db.block_exists(genesis_block.accumulated_data().hash.clone())? {
// Check the genesis block in the DB.
error!(
target: LOG_TARGET,
"Genesis block in database does not match the supplied genesis block in the code! Hash in the code \
{:?}, hash in the database {:?}",
blockchain_db.fetch_chain_header(0)?.hash(),
genesis_block.accumulated_data().hash
);
return Err(ChainStorageError::CorruptedDatabase(
"Genesis block in database does not match the supplied genesis block in the code! Please delete and \
resync your blockchain database."
.into(),
));
}
if cleanup_orphans_at_startup {
match blockchain_db.cleanup_all_orphans() {
Expand Down