File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -215,10 +215,21 @@ impl ClarityBackingStore for NullBackingStore {
215
215
panic ! ( "NullBackingStore can't retrieve data" )
216
216
}
217
217
218
+ fn get_data_from_path ( & mut self , _hash : & TrieHash ) -> Result < Option < String > > {
219
+ panic ! ( "NullBackingStore can't retrieve data" )
220
+ }
221
+
218
222
fn get_data_with_proof ( & mut self , _key : & str ) -> Result < Option < ( String , Vec < u8 > ) > > {
219
223
panic ! ( "NullBackingStore can't retrieve data" )
220
224
}
221
225
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
+
222
233
#[ cfg( feature = "canonical" ) ]
223
234
fn get_side_store ( & mut self ) -> & Connection {
224
235
panic ! ( "NullBackingStore has no side store" )
You can’t perform that action at this time.
0 commit comments