From e2fa7ccaf99a5add1bfcd48772253ccdc81cb68d Mon Sep 17 00:00:00 2001 From: TamtamHero <10632523+TamtamHero@users.noreply.github.com> Date: Fri, 7 May 2021 15:47:14 +0200 Subject: [PATCH] Increase size allocate to plugin context from 96 to 160 bytes --- src/shared_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared_context.h b/src/shared_context.h index 63d61a7..9b04084 100644 --- a/src/shared_context.h +++ b/src/shared_context.h @@ -65,7 +65,7 @@ typedef struct tokenContext_t { uint8_t contract_address[ADDRESS_LENGTH]; uint8_t method_selector[SELECTOR_LENGTH]; }; - uint8_t pluginContext[3 * INT256_LENGTH]; + uint8_t pluginContext[5 * INT256_LENGTH]; }; #ifdef HAVE_STARKWARE