Skip to content

Commit

Permalink
add StoreSetSum types to WRITABLE_STORE array
Browse files Browse the repository at this point in the history
  • Loading branch information
colindickson committed May 14, 2024
1 parent 91e8338 commit cb6abe8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion substreams-macro/src/handler.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ pub fn main(item: TokenStream, module_type: ModuleType) -> TokenStream {
}
}

const WRITABLE_STORE: [&'static str; 27] = [
const WRITABLE_STORE: [&'static str; 31] = [
"StoreSetRaw",
"StoreSetString",
"StoreSetBigInt",
Expand Down Expand Up @@ -177,6 +177,10 @@ const WRITABLE_STORE: [&'static str; 27] = [
"StoreMinFloat64",
"StoreMinBigDecimal",
"StoreAppend",
"StoreSetSumInt64",
"StoreSetSumFloat64",
"StoreSetSumBigInt",
"StoreSetSumBigDecimal",
];

const READABLE_STORE: [&'static str; 8] = [
Expand Down

0 comments on commit cb6abe8

Please sign in to comment.