From 199029c4b015b81b7114b1e8b9411767bffd452b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Palmer?= Date: Wed, 11 Sep 2024 10:57:51 +0200 Subject: [PATCH] fixup! register if a micheline is the unit value --- app/src/parser/micheline_state.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/parser/micheline_state.h b/app/src/parser/micheline_state.h index 6584396d7..1f2268e4e 100644 --- a/app/src/parser/micheline_state.h +++ b/app/src/parser/micheline_state.h @@ -129,5 +129,5 @@ typedef struct { stack[TZ_MICHELINE_STACK_DEPTH]; /// stack of frames tz_micheline_parser_frame *frame; /// current frame /// init == stack, NULL when done - bool is_unit; /// indicates whether the micheline read is a unit + uint8_t is_unit : 1; /// indicates whether the micheline read is a unit } tz_micheline_state;