This repository was archived by the owner on Dec 9, 2023. It is now read-only.
File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -15,8 +15,6 @@ pub const GENESIS: &'static str = "genesis";
15
15
pub const TRANSITIONS : & ' static str = "transitions" ;
16
16
pub const ANCHORS : & ' static str = "anchors" ;
17
17
pub const EXTENSIONS : & ' static str = "extensions" ;
18
- pub const ATTACHMENT_CHUNKS : & ' static str = "chunks" ;
19
- pub const ATTACHMENT_INDEX : & ' static str = "attachments" ;
20
18
pub const ALU_LIBS : & ' static str = "alu" ;
21
19
22
20
pub const OUTPOINTS : & ' static str = "outpoints" ;
@@ -26,6 +24,12 @@ pub const CONTRACT_TRANSITIONS: &'static str = "contract_transitions";
26
24
27
25
pub const DISCLOSURES : & ' static str = "disclosures" ;
28
26
27
+ // Storm intgration
28
+ pub const ATTACHMENT_CHUNKS : & ' static str = "chunks" ;
29
+ pub const ATTACHMENT_INDEX : & ' static str = "attachments" ;
30
+ pub const ATTACHMENT_CONTAINER_HEADERS : & ' static str = "container_headers" ;
31
+ pub const ATTACHMENT_CONTAINERS : & ' static str = "containers" ;
32
+
29
33
pub ( crate ) trait StoreRpcExt {
30
34
fn retrieve_sten < T > (
31
35
& mut self ,
Original file line number Diff line number Diff line change @@ -108,6 +108,8 @@ impl Runtime {
108
108
db:: TRANSITION_WITNESS ,
109
109
db:: CONTRACT_TRANSITIONS ,
110
110
db:: DISCLOSURES ,
111
+ db:: ATTACHMENT_CONTAINER_HEADERS ,
112
+ db:: ATTACHMENT_CONTAINERS ,
111
113
] {
112
114
store. use_table ( table. to_owned ( ) ) . map_err ( LaunchError :: from) ?;
113
115
}
You can’t perform that action at this time.
0 commit comments