clear out situation when one tries to start a DB without a block

This commit is contained in:
Rostyslav Tyshko 2025-05-30 15:22:15 -04:00
parent 13d8c72a82
commit 88da732d5c

View File

@ -103,9 +103,8 @@ impl RocksDBIO {
Ok(dbio) Ok(dbio)
} else { } else {
warn!("Starting db in unset mode, will have to set starting block manually"); // Here we are trying to start a DB without a block, one should not do it.
unreachable!()
Ok(dbio)
} }
} }