From e94173aa1227da84c364d7dc936c9f9b7af51292 Mon Sep 17 00:00:00 2001 From: Rostyslav Tyshko Date: Fri, 23 May 2025 15:46:52 -0400 Subject: [PATCH] add new column family --- storage/src/lib.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/storage/src/lib.rs b/storage/src/lib.rs index 753cac3a..dd43016c 100644 --- a/storage/src/lib.rs +++ b/storage/src/lib.rs @@ -41,6 +41,8 @@ pub const CF_BLOCK_NAME: &str = "cf_block"; pub const CF_META_NAME: &str = "cf_meta"; ///Name of smart contract column family pub const CF_SC_NAME: &str = "cf_sc"; +///Name of snapshot column family +pub const CF_SNAPSHOT_NAME: &str = "cf_snapshot"; ///Suffix, used to mark field, which contain length of smart contract pub const SC_LEN_SUFFIX: &str = "sc_len";