Skip to content

Commit ef3ef67

Browse files
committed
chore: add missing trait functions implementations
1 parent f9fcc57 commit ef3ef67

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

clarity/src/vm/database/clarity_store.rs

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -215,10 +215,21 @@ impl ClarityBackingStore for NullBackingStore {
215215
panic!("NullBackingStore can't retrieve data")
216216
}
217217

218+
fn get_data_from_path(&mut self, _hash: &TrieHash) -> Result<Option<String>> {
219+
panic!("NullBackingStore can't retrieve data")
220+
}
221+
218222
fn get_data_with_proof(&mut self, _key: &str) -> Result<Option<(String, Vec<u8>)>> {
219223
panic!("NullBackingStore can't retrieve data")
220224
}
221225

226+
fn get_data_with_proof_from_path(
227+
&mut self,
228+
_hash: &TrieHash,
229+
) -> Result<Option<(String, Vec<u8>)>> {
230+
panic!("NullBackingStore can't retrieve data")
231+
}
232+
222233
#[cfg(feature = "canonical")]
223234
fn get_side_store(&mut self) -> &Connection {
224235
panic!("NullBackingStore has no side store")

0 commit comments

Comments
 (0)