diff --git a/core/src/storage/db.rs b/core/src/storage/db.rs index 10ce9db3..efe22b61 100644 --- a/core/src/storage/db.rs +++ b/core/src/storage/db.rs @@ -24,7 +24,6 @@ pub struct RocksDB { #[derive(Debug)] pub enum Database { MerkleTree, - StateKeeper, Sequencer, } @@ -126,12 +125,6 @@ impl RocksDB { }); DB::open_cf_descriptors(&options, path, cfs).expect("failed to init rocksdb") } - Database::StateKeeper => { - let cfs = StateKeeperColumnFamily::all().iter().map(|cf| { - ColumnFamilyDescriptor::new(cf.to_string(), Self::rocksdb_options(tune_options)) - }); - DB::open_cf_descriptors(&options, path, cfs).expect("failed to init rocksdb") - } Database::Sequencer => { let cfs = SequencerColumnFamily::all().iter().map(|cf| { ColumnFamilyDescriptor::new(cf.to_string(), Self::rocksdb_options(tune_options))