From 6868bec3ed8e063597396c3467227e46b98bd169 Mon Sep 17 00:00:00 2001 From: Ulf Norell Date: Mon, 11 Nov 2019 10:15:40 +0100 Subject: [PATCH] Fix bug in dependency analysis of GAS --- src/aeso_fcode_to_fate.erl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aeso_fcode_to_fate.erl b/src/aeso_fcode_to_fate.erl index 7931822..df1f0f1 100644 --- a/src/aeso_fcode_to_fate.erl +++ b/src/aeso_fcode_to_fate.erl @@ -820,7 +820,7 @@ attributes(I) -> {'MICROBLOCK', A} -> Pure(A, []); {'DIFFICULTY', A} -> Pure(A, []); {'GASLIMIT', A} -> Pure(A, []); - {'GAS', A} -> Impure(?a, A); + {'GAS', A} -> Pure(A, []); {'LOG0', A} -> Impure(none, [A]); {'LOG1', A, B} -> Impure(none, [A, B]); {'LOG2', A, B, C} -> Impure(none, [A, B, C]);