From cb6abe820a1107dd89221b78a8133c40af528579 Mon Sep 17 00:00:00 2001 From: colindickson Date: Tue, 14 May 2024 13:23:29 -0400 Subject: [PATCH] add StoreSetSum types to WRITABLE_STORE array --- substreams-macro/src/handler.rs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/substreams-macro/src/handler.rs b/substreams-macro/src/handler.rs index 6dcd299..6a5def2 100644 --- a/substreams-macro/src/handler.rs +++ b/substreams-macro/src/handler.rs @@ -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", @@ -177,6 +177,10 @@ const WRITABLE_STORE: [&'static str; 27] = [ "StoreMinFloat64", "StoreMinBigDecimal", "StoreAppend", + "StoreSetSumInt64", + "StoreSetSumFloat64", + "StoreSetSumBigInt", + "StoreSetSumBigDecimal", ]; const READABLE_STORE: [&'static str; 8] = [