diff --git a/stackslib/src/chainstate/stacks/index/marf.rs b/stackslib/src/chainstate/stacks/index/marf.rs index 7a7cbfd73..976dd69c2 100644 --- a/stackslib/src/chainstate/stacks/index/marf.rs +++ b/stackslib/src/chainstate/stacks/index/marf.rs @@ -1545,4 +1545,9 @@ impl MARF { pub fn get_root_hash_at(&mut self, block_hash: &T) -> Result { self.storage.connection().get_root_hash_at(block_hash) } + + /// Convert to the inner sqlite connection + pub fn into_sqlite_conn(self) -> Connection { + self.storage.into_sqlite_conn() + } }