From 7ab0c429e4488f1b48fc7eec55dc2bdaa63f7ddd Mon Sep 17 00:00:00 2001 From: Vaivaswatha Nagaraj Date: Tue, 27 Jul 2021 17:31:24 +0530 Subject: [PATCH 1/2] Move cost of parsing from deployment in interpreter to checker The blockchain runs the checker prior to running the interpreter during a deployment. Since this check must be done at the earliest, move it to the checker. --- src/base/Checker.ml | 44 +++++++++++++++---- src/base/JSON.ml | 4 +- src/eval/Runner.ml | 14 +----- tests/checker/bad/gold/BadPMLib.scillib.gold | 2 +- .../checker/bad/gold/TestLibNS1.scillib.gold | 2 +- .../bad/gold/address_eq_test_bad.scilla.gold | 2 +- .../address_list_traversal_bad.scilla.gold | 2 +- .../address_non_storable_type.scilla.gold | 2 +- .../bad/gold/bad-exception1.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_1.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_2.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_3.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_4.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_7.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_8.scilla.gold | 2 +- .../bad/gold/bad_adt_lib_3.scilla.gold | 2 +- .../bad/gold/bad_adt_lib_4.scilla.gold | 2 +- .../bad/gold/bad_adt_lib_5.scilla.gold | 2 +- .../bad/gold/bad_adt_lib_6.scilla.gold | 2 +- tests/checker/bad/gold/bad_cast_1.scilla.gold | 2 +- tests/checker/bad/gold/bad_cast_2.scilla.gold | 2 +- tests/checker/bad/gold/bad_cast_3.scilla.gold | 2 +- .../bad/gold/bad_comment_1.scilla.gold | 2 +- .../bad/gold/bad_comment_2.scilla.gold | 2 +- .../checker/bad/gold/bad_fields1.scilla.gold | 2 +- .../checker/bad/gold/bad_fields2.scilla.gold | 2 +- .../checker/bad/gold/bad_fields3.scilla.gold | 2 +- .../checker/bad/gold/bad_fields4.scilla.gold | 2 +- .../bad/gold/bad_lib_pm_import.scilla.gold | 2 +- .../checker/bad/gold/bad_lib_type.scilla.gold | 2 +- .../bad/gold/bad_lib_type2.scilla.gold | 2 +- .../bad/gold/bad_lib_type3.scilla.gold | 2 +- .../bad/gold/bad_map_key_1.scilla.gold | 2 +- .../bad/gold/bad_map_key_5.scilla.gold | 2 +- .../checker/bad/gold/bad_message1.scilla.gold | 2 +- .../checker/bad/gold/bad_message2.scilla.gold | 2 +- tests/checker/bad/gold/bad_param.scilla.gold | 2 +- .../bad/gold/bad_transition_param.scilla.gold | 2 +- .../bad/gold/balance_field.scilla.gold | 2 +- .../bad/gold/builtin_type_args.scilla.gold | 2 +- .../constraint_field_not_in_scope.scilla.gold | 2 +- ...constraint_locals_not_in_scope.scilla.gold | 2 +- .../gold/constraint_type_illegal.scilla.gold | 2 +- tests/checker/bad/gold/event_bad1.scilla.gold | 2 +- tests/checker/bad/gold/event_bad2.scilla.gold | 2 +- .../forward_definition_procedure.scilla.gold | 2 +- .../gold/global_scope_procedures.scilla.gold | 2 +- .../bad/gold/homonymous_vars.scilla.gold | 2 +- .../bad/gold/homonymous_vars2.scilla.gold | 2 +- .../bad/gold/homonymous_vars3.scilla.gold | 2 +- .../gold/import-test-lib-bad_1.scilla.gold | 2 +- .../gold/import-test-lib-bad_2.scilla.gold | 2 +- .../gold/import-test-lib-bad_3.scilla.gold | 2 +- .../checker/bad/gold/inplace-map.scilla.gold | 2 +- tests/checker/bad/gold/lib_bad1.scilla.gold | 2 +- tests/checker/bad/gold/libdup1.scilla.gold | 2 +- tests/checker/bad/gold/libdup2.scilla.gold | 2 +- .../checker/bad/gold/libindirect.scilla.gold | 2 +- .../checker/bad/gold/listiter-bad.scilla.gold | 2 +- .../bad/gold/map_value_function.scilla.gold | 2 +- tests/checker/bad/gold/mappair.scilla.gold | 2 +- tests/checker/bad/gold/mappair2.scilla.gold | 2 +- .../bad/gold/match-in-transition.scilla.gold | 2 +- .../bad/gold/message_field.scilla.gold | 2 +- .../bad/gold/message_field2.scilla.gold | 2 +- .../bad/gold/message_field3.scilla.gold | 2 +- .../mutually_recursive_procedure.scilla.gold | 2 +- .../checker/bad/gold/name_clashes.scilla.gold | 2 +- tests/checker/bad/gold/namespace1.scilla.gold | 2 +- .../bad/gold/procedure_bad_args.scilla.gold | 2 +- .../bad/gold/procedure_bad_type.scilla.gold | 2 +- .../bad/gold/procedure_env.scilla.gold | 2 +- .../bad/gold/procedure_map_arg.scilla.gold | 2 +- .../bad/gold/recursive_procedure.scilla.gold | 2 +- .../bad/gold/remote_read_bad_1.scilla.gold | 2 +- .../bad/gold/remote_read_bad_2.scilla.gold | 2 +- .../bad/gold/remote_read_bad_3.scilla.gold | 2 +- .../gold/remote_read_non_address.scilla.gold | 2 +- .../bad/gold/remote_read_spid.scilla.gold | 2 +- .../checker/bad/gold/send_event1.scilla.gold | 2 +- .../checker/bad/gold/send_event2.scilla.gold | 2 +- tests/checker/bad/gold/unbound.scilla.gold | 2 +- .../bad/gold/unserializable_param.scilla.gold | 2 +- .../bad/gold/unstorable_adt.scilla.gold | 2 +- tests/checker/bad/gold/zil_mod.scilla.gold | 2 +- .../gold/InstantiatedListUtils.scillib.gold | 2 +- .../checker/good/gold/TestLibNS1.scillib.gold | 2 +- .../checker/good/gold/TestLibNS2.scillib.gold | 2 +- .../checker/good/gold/TestLibNS3.scillib.gold | 2 +- .../checker/good/gold/TestLibNS4.scillib.gold | 2 +- tests/checker/good/gold/UintParam.scilla.gold | 2 +- .../good/gold/address_eq_test.scilla.gold | 2 +- .../gold/address_list_as_cparam.scilla.gold | 2 +- .../gold/address_list_traversal.scilla.gold | 2 +- tests/checker/good/gold/adt_test.scilla.gold | 2 +- tests/checker/good/gold/auction.scilla.gold | 2 +- .../good/gold/auction.scilla.typeinfo.gold | 2 +- .../backward_definition_procedure.scilla.gold | 2 +- .../good/gold/blockchain_import.scilla.gold | 2 +- tests/checker/good/gold/blowup_1.scilla.gold | 2 +- tests/checker/good/gold/blowup_2.scilla.gold | 2 +- tests/checker/good/gold/bookstore.scilla.gold | 2 +- .../good/gold/builtin_type_args.scilla.gold | 2 +- .../good/gold/cashflow_test.scilla.gold | 2 +- tests/checker/good/gold/cfinvoke.scilla.gold | 2 +- .../gold/chain-call-balance-1.scilla.gold | 2 +- .../gold/chain-call-balance-2.scilla.gold | 2 +- .../gold/chain-call-balance-3.scilla.gold | 2 +- .../checker/good/gold/constraint.scilla.gold | 2 +- .../good/gold/constraint_scope.scilla.gold | 2 +- .../good/gold/crowdfunding.scilla.gold | 2 +- .../good/gold/crowdfunding_proc.scilla.gold | 2 +- .../good/gold/dead_code_test1.scilla.gold | 2 +- .../good/gold/dead_code_test2.scilla.gold | 2 +- .../good/gold/dead_code_test3.scilla.gold | 2 +- .../good/gold/dead_code_test4.scilla.gold | 2 +- .../good/gold/earmarked-coin.scilla.gold | 2 +- tests/checker/good/gold/ecdsa.scilla.gold | 2 +- tests/checker/good/gold/empty.scilla.gold | 2 +- .../gold/event_reordered_fields.scilla.gold | 2 +- .../good/gold/fungible-token.scilla.gold | 2 +- .../checker/good/gold/helloWorld.scilla.gold | 2 +- .../good/gold/import-test-lib.scilla.gold | 2 +- .../good/gold/import-test-lib2.scilla.gold | 2 +- .../good/gold/import-test-lib3.scilla.gold | 2 +- .../checker/good/gold/inplace-map.scilla.gold | 2 +- .../checker/good/gold/lib_typing.scilla.gold | 2 +- .../checker/good/gold/lib_typing2.scilla.gold | 2 +- tests/checker/good/gold/libchain1.scilla.gold | 2 +- tests/checker/good/gold/libchain2.scilla.gold | 2 +- .../checker/good/gold/libdiamond.scilla.gold | 2 +- .../checker/good/gold/libdiamond2.scilla.gold | 2 +- tests/checker/good/gold/listiter.scilla.gold | 2 +- ...ap-inplace-update-with-_sender.scilla.gold | 2 +- .../good/gold/map_as_cparam.scilla.gold | 2 +- .../good/gold/map_corners_test.scilla.gold | 2 +- .../map_corners_test.scilla.typeinfo.gold | 2 +- .../good/gold/map_key_test.scilla.gold | 2 +- .../good/gold/map_no_inplace_warn.scilla.gold | 2 +- tests/checker/good/gold/mappair.scilla.gold | 2 +- .../good/gold/missing-accepts.scilla.gold | 2 +- .../good/gold/multiple-accepts.scilla.gold | 2 +- .../good/gold/multiple-msgs.scilla.gold | 2 +- .../checker/good/gold/namespace1.scilla.gold | 2 +- .../checker/good/gold/namespace2.scilla.gold | 2 +- .../checker/good/gold/namespace3.scilla.gold | 2 +- .../good/gold/nested-comments.scilla.gold | 2 +- .../good/gold/nonfungible-token.scilla.gold | 2 +- .../checker/good/gold/one-accept.scilla.gold | 2 +- tests/checker/good/gold/one-msg.scilla.gold | 2 +- tests/checker/good/gold/one-msg1.scilla.gold | 2 +- tests/checker/good/gold/one-msg2.scilla.gold | 2 +- tests/checker/good/gold/one-msg3.scilla.gold | 2 +- .../gold/one-transition-accepts.scilla.gold | 2 +- .../one-transition-might-accept.scilla.gold | 2 +- tests/checker/good/gold/ping.scilla.gold | 2 +- .../good/gold/polymorphic_address.scilla.gold | 2 +- tests/checker/good/gold/pong.scilla.gold | 2 +- .../good/gold/remote_state_reads.scilla.gold | 2 +- .../gold/remote_state_reads_2.scilla.gold | 2 +- tests/checker/good/gold/schnorr.scilla.gold | 2 +- .../good/gold/shadow_import.scilla.gold | 2 +- .../checker/good/gold/shadowwarn1.scilla.gold | 2 +- .../checker/good/gold/shadowwarn2.scilla.gold | 2 +- .../checker/good/gold/shadowwarn3.scilla.gold | 2 +- tests/checker/good/gold/shogi.scilla.gold | 2 +- .../checker/good/gold/shogi_proc.scilla.gold | 2 +- .../gold/simple-dex-remote-reads.scilla.gold | 2 +- .../gold/simple-dex-shadowwarn.scilla.gold | 2 +- .../checker/good/gold/simple-dex.scilla.gold | 2 +- .../checker/good/gold/type_casts.scilla.gold | 2 +- tests/checker/good/gold/ud-proxy.scilla.gold | 2 +- .../checker/good/gold/ud-registry.scilla.gold | 2 +- tests/checker/good/gold/wallet.scilla.gold | 2 +- tests/checker/good/gold/wallet_2.scilla.gold | 2 +- tests/checker/good/gold/zil-game.scilla.gold | 2 +- .../init_output.json | 2 +- tests/runner/TestLib2/init_output.json | 2 +- .../TestLib2/init_wrong_version_output.json | 2 +- tests/runner/Testcontracts.ml | 2 + .../init_address_type_ipc_output.json | 2 +- .../init_illegal_type_ipc_output.json | 2 +- .../init_illegal_value_ipc_output.json | 2 +- .../init_ipc_output.json | 2 +- tests/runner/constraint/init_output.json | 2 +- tests/runner/creationtest/init_output.json | 2 +- tests/runner/crowdfunding/init_output.json | 2 +- .../init_goal_is_zero_output.json | 2 +- .../init_illegal_key_ipc_output.json | 2 +- .../init_illegal_value_ipc_output.json | 2 +- .../runner/map_as_cparam/init_ipc_output.json | 2 +- .../init_unassignable_2_ipc_output.json | 2 +- .../init_unassignable_ipc_output.json | 2 +- .../init_address_type_ipc_output.json | 2 +- .../init_assignable_map_types_ipc_output.json | 2 +- .../init_balance_and_nonce_ipc_output.json | 2 +- .../init_balance_no_nonce_ipc_output.json | 2 +- .../remote_state_reads/init_ipc_output.json | 2 +- .../init_missing_field_ipc_output.json | 2 +- .../init_no_address_ipc_output.json | 2 +- .../init_nonce_no_balance_ipc_output.json | 2 +- ...t_wrong_address_field_type_ipc_output.json | 2 +- .../init_wrong_field_type_ipc_output.json | 2 +- .../init_wrong_map_type_ipc_output.json | 2 +- .../wallet_2/init_no_owners_output.json | 2 +- .../init_not_enough_owners_output.json | 2 +- .../wallet_2/init_req_sigs_zero_output.json | 2 +- tests/runner/zil-game/init_output.json | 2 +- 208 files changed, 247 insertions(+), 225 deletions(-) diff --git a/src/base/Checker.ml b/src/base/Checker.ml index 7bd6883f7..371e91ba7 100644 --- a/src/base/Checker.ml +++ b/src/base/Checker.ml @@ -232,8 +232,22 @@ let wrap_error_with_gas gas res = let check_lmodule cli = let r = let initial_gas = Uint64.mul Gas.scale_factor cli.gas_limit in + let remaining_gas = + let cost' = + UnixLabels.( + (stat cli.input_file).st_size + + match cli.init_file with Some f -> (stat f).st_size | None -> 0) + in + let cost = Uint64.of_int cost' in + if Uint64.compare initial_gas cost < 0 then + fatal_error_gas_scale Gas.scale_factor + (mk_error0 + (sprintf "Ran out of gas when parsing contract/init files.\n")) + Uint64.zero + else Uint64.sub initial_gas cost + in let%bind (lmod : ParserSyntax.lmodule) = - wrap_error_with_gas initial_gas + wrap_error_with_gas remaining_gas @@ check_parsing cli.input_file Parser.Incremental.lmodule in let this_address_opt, init_address_map = @@ -246,15 +260,15 @@ let check_lmodule cli = in let elibs = import_libs lmod.elibs init_address_map in let%bind dis_lmod = - wrap_error_with_gas initial_gas + wrap_error_with_gas remaining_gas @@ disambiguate_lmod lmod elibs init_address_map this_address in let%bind recursion_lmod, recursion_rec_principles, recursion_elibs = - wrap_error_with_gas initial_gas @@ check_recursion_lmod dis_lmod elibs + wrap_error_with_gas remaining_gas @@ check_recursion_lmod dis_lmod elibs in let%bind (typed_lmod, typed_rlibs, typed_elibs), remaining_gas = check_typing_lmod recursion_lmod recursion_rec_principles recursion_elibs - initial_gas + remaining_gas in let%bind () = Result.ignore_m @@ -302,8 +316,22 @@ let check_lmodule cli = let check_cmodule cli = let r = let initial_gas = Uint64.mul Gas.scale_factor cli.gas_limit in + let remaining_gas = + let cost' = + UnixLabels.( + (stat cli.input_file).st_size + + match cli.init_file with Some f -> (stat f).st_size | None -> 0) + in + let cost = Uint64.of_int cost' in + if Uint64.compare initial_gas cost < 0 then + fatal_error_gas_scale Gas.scale_factor + (mk_error0 + (sprintf "Ran out of gas when parsing contract/init files.\n")) + Uint64.zero + else Uint64.sub initial_gas cost + in let%bind (cmod : ParserSyntax.cmodule) = - wrap_error_with_gas initial_gas + wrap_error_with_gas remaining_gas @@ check_parsing cli.input_file Parser.Incremental.cmodule in (* Import whatever libs we want. *) @@ -317,15 +345,15 @@ let check_cmodule cli = in let elibs = import_libs cmod.elibs init_address_map in let%bind dis_cmod = - wrap_error_with_gas initial_gas + wrap_error_with_gas remaining_gas @@ disambiguate_cmod cmod elibs init_address_map this_address in let%bind recursion_cmod, recursion_rec_principles, recursion_elibs = - wrap_error_with_gas initial_gas @@ check_recursion dis_cmod elibs + wrap_error_with_gas remaining_gas @@ check_recursion dis_cmod elibs in let%bind (typed_cmod, tenv, typed_elibs, typed_rlibs), remaining_gas = check_typing recursion_cmod recursion_rec_principles recursion_elibs - initial_gas + remaining_gas in let%bind pm_checked_cmod, _pm_checked_rlibs, _pm_checked_elibs = wrap_error_with_gas remaining_gas diff --git a/src/base/JSON.ml b/src/base/JSON.ml index e841a4798..ba58e7a71 100644 --- a/src/base/JSON.ml +++ b/src/base/JSON.ml @@ -81,7 +81,9 @@ let build_prim_lit_exn t v = mk_invalid_json ("Invalid " ^ pp_typ t ^ " value " ^ v ^ " in JSON") in let build_prim_literal_of_type t v = - match build_prim_literal t v with Some v' -> v' | None -> raise (exn ()) + try + match build_prim_literal t v with Some v' -> v' | None -> raise (exn ()) + with Invalid_argument _ -> raise (exn ()) in match t with | PrimType pt -> build_prim_literal_of_type pt v diff --git a/src/eval/Runner.ml b/src/eval/Runner.ml index bab6ccc1c..935956d0b 100644 --- a/src/eval/Runner.ml +++ b/src/eval/Runner.ml @@ -370,18 +370,8 @@ let run_with_args args = in let initial_gas_limit = Uint64.mul args.gas_limit Gas.scale_factor in let gas_remaining = - (* Subtract gas based on (contract+init) size / message size. *) - if is_deployment then - let cost' = - UnixLabels.((stat args.input).st_size + (stat args.input_init).st_size) - in - let cost = Uint64.of_int cost' in - if Uint64.compare initial_gas_limit cost < 0 then - fatal_error_gas_scale Gas.scale_factor - (mk_error0 - (sprintf "Ran out of gas when parsing contract/init files.\n")) - Uint64.zero - else Uint64.sub initial_gas_limit cost + (* Subtract gas based message size. *) + if is_deployment then initial_gas_limit else let cost = Uint64.of_int (UnixLabels.stat args.input_message).st_size in (* libraries can only be deployed, not "run". *) diff --git a/tests/checker/bad/gold/BadPMLib.scillib.gold b/tests/checker/bad/gold/BadPMLib.scillib.gold index 5236f0c20..db3d1cf4a 100644 --- a/tests/checker/bad/gold/BadPMLib.scillib.gold +++ b/tests/checker/bad/gold/BadPMLib.scillib.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7985", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/TestLibNS1.scillib.gold b/tests/checker/bad/gold/TestLibNS1.scillib.gold index 6bc10892c..f0dbccafb 100644 --- a/tests/checker/bad/gold/TestLibNS1.scillib.gold +++ b/tests/checker/bad/gold/TestLibNS1.scillib.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7976", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/address_eq_test_bad.scilla.gold b/tests/checker/bad/gold/address_eq_test_bad.scilla.gold index 3fffb2814..9325af932 100644 --- a/tests/checker/bad/gold/address_eq_test_bad.scilla.gold +++ b/tests/checker/bad/gold/address_eq_test_bad.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7869", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/address_list_traversal_bad.scilla.gold b/tests/checker/bad/gold/address_list_traversal_bad.scilla.gold index 7eeadf96d..7719eb01d 100644 --- a/tests/checker/bad/gold/address_list_traversal_bad.scilla.gold +++ b/tests/checker/bad/gold/address_list_traversal_bad.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7914", + "gas_remaining": "7739", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/address_non_storable_type.scilla.gold b/tests/checker/bad/gold/address_non_storable_type.scilla.gold index 8f098ce13..a72269072 100644 --- a/tests/checker/bad/gold/address_non_storable_type.scilla.gold +++ b/tests/checker/bad/gold/address_non_storable_type.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7936", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad-exception1.scilla.gold b/tests/checker/bad/gold/bad-exception1.scilla.gold index ecc4bf1f7..a4e8a4d11 100644 --- a/tests/checker/bad/gold/bad-exception1.scilla.gold +++ b/tests/checker/bad/gold/bad-exception1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7931", "errors": [ { "error_message": "Cannot serialize values of type Uint32 -> Uint32.", diff --git a/tests/checker/bad/gold/bad_adt_1.scilla.gold b/tests/checker/bad/gold/bad_adt_1.scilla.gold index 189171606..61e48ad15 100644 --- a/tests/checker/bad/gold/bad_adt_1.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7962", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_2.scilla.gold b/tests/checker/bad/gold/bad_adt_2.scilla.gold index fbe41d320..9db4bb0ab 100644 --- a/tests/checker/bad/gold/bad_adt_2.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7962", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_3.scilla.gold b/tests/checker/bad/gold/bad_adt_3.scilla.gold index 0933fde3a..aa01353a8 100644 --- a/tests/checker/bad/gold/bad_adt_3.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7962", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_4.scilla.gold b/tests/checker/bad/gold/bad_adt_4.scilla.gold index 867240802..e8712005b 100644 --- a/tests/checker/bad/gold/bad_adt_4.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_4.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7962", "errors": [ { "error_message": "Type error(s) in contract BadLib:\n", diff --git a/tests/checker/bad/gold/bad_adt_7.scilla.gold b/tests/checker/bad/gold/bad_adt_7.scilla.gold index c0c45abb5..dfd64a91a 100644 --- a/tests/checker/bad/gold/bad_adt_7.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_7.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7983", "errors": [ { "error_message": "Type error(s) in contract Test:\n", diff --git a/tests/checker/bad/gold/bad_adt_8.scilla.gold b/tests/checker/bad/gold/bad_adt_8.scilla.gold index 0f0061d0e..b99fa8df3 100644 --- a/tests/checker/bad/gold/bad_adt_8.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_8.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7989", "errors": [ { "error_message": "Type error(s) in contract Test:\n", diff --git a/tests/checker/bad/gold/bad_adt_lib_3.scilla.gold b/tests/checker/bad/gold/bad_adt_lib_3.scilla.gold index 992f9b052..95149faf0 100644 --- a/tests/checker/bad/gold/bad_adt_lib_3.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_lib_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7971", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_lib_4.scilla.gold b/tests/checker/bad/gold/bad_adt_lib_4.scilla.gold index 561033eb1..294f4d017 100644 --- a/tests/checker/bad/gold/bad_adt_lib_4.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_lib_4.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7971", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_lib_5.scilla.gold b/tests/checker/bad/gold/bad_adt_lib_5.scilla.gold index 3d7d6ee69..a7f6569a4 100644 --- a/tests/checker/bad/gold/bad_adt_lib_5.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_lib_5.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7967", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_lib_6.scilla.gold b/tests/checker/bad/gold/bad_adt_lib_6.scilla.gold index bbf3d74ef..5dca51623 100644 --- a/tests/checker/bad/gold/bad_adt_lib_6.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_lib_6.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7967", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_cast_1.scilla.gold b/tests/checker/bad/gold/bad_cast_1.scilla.gold index 5c2ab6cc4..4a2f25312 100644 --- a/tests/checker/bad/gold/bad_cast_1.scilla.gold +++ b/tests/checker/bad/gold/bad_cast_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7977", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_cast_2.scilla.gold b/tests/checker/bad/gold/bad_cast_2.scilla.gold index ae933c78c..068a06e08 100644 --- a/tests/checker/bad/gold/bad_cast_2.scilla.gold +++ b/tests/checker/bad/gold/bad_cast_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7975", "errors": [ { "error_message": "Ends in an error in state: 286.\n", diff --git a/tests/checker/bad/gold/bad_cast_3.scilla.gold b/tests/checker/bad/gold/bad_cast_3.scilla.gold index 8c98fdfa0..f776d44e1 100644 --- a/tests/checker/bad/gold/bad_cast_3.scilla.gold +++ b/tests/checker/bad/gold/bad_cast_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7975", "errors": [ { "error_message": "Ends in an error in state: 286.\n", diff --git a/tests/checker/bad/gold/bad_comment_1.scilla.gold b/tests/checker/bad/gold/bad_comment_1.scilla.gold index 29cc93148..217c28e37 100644 --- a/tests/checker/bad/gold/bad_comment_1.scilla.gold +++ b/tests/checker/bad/gold/bad_comment_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7987", "errors": [ { "error_message": "Lexical error: Comment unfinished", diff --git a/tests/checker/bad/gold/bad_comment_2.scilla.gold b/tests/checker/bad/gold/bad_comment_2.scilla.gold index 39a32d0d8..1b398ca16 100644 --- a/tests/checker/bad/gold/bad_comment_2.scilla.gold +++ b/tests/checker/bad/gold/bad_comment_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7985", "errors": [ { "error_message": "Lexical error: Comment unfinished", diff --git a/tests/checker/bad/gold/bad_fields1.scilla.gold b/tests/checker/bad/gold/bad_fields1.scilla.gold index b4c463014..9605f685c 100644 --- a/tests/checker/bad/gold/bad_fields1.scilla.gold +++ b/tests/checker/bad/gold/bad_fields1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7985", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_fields2.scilla.gold b/tests/checker/bad/gold/bad_fields2.scilla.gold index 23d9e615e..e44146d37 100644 --- a/tests/checker/bad/gold/bad_fields2.scilla.gold +++ b/tests/checker/bad/gold/bad_fields2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7983", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_fields3.scilla.gold b/tests/checker/bad/gold/bad_fields3.scilla.gold index efe246e33..b9e9e5830 100644 --- a/tests/checker/bad/gold/bad_fields3.scilla.gold +++ b/tests/checker/bad/gold/bad_fields3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7984", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_fields4.scilla.gold b/tests/checker/bad/gold/bad_fields4.scilla.gold index ab5ef534a..c7cfe9f50 100644 --- a/tests/checker/bad/gold/bad_fields4.scilla.gold +++ b/tests/checker/bad/gold/bad_fields4.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7984", "errors": [ { "error_message": "Values of the type \"Message\" cannot be stored.", diff --git a/tests/checker/bad/gold/bad_lib_pm_import.scilla.gold b/tests/checker/bad/gold/bad_lib_pm_import.scilla.gold index fb0cc45d5..715158316 100644 --- a/tests/checker/bad/gold/bad_lib_pm_import.scilla.gold +++ b/tests/checker/bad/gold/bad_lib_pm_import.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7990", "errors": [ { "error_message": "Type error(s) in contract BadLibPM:\n", diff --git a/tests/checker/bad/gold/bad_lib_type.scilla.gold b/tests/checker/bad/gold/bad_lib_type.scilla.gold index 8ce604682..acfee180d 100644 --- a/tests/checker/bad/gold/bad_lib_type.scilla.gold +++ b/tests/checker/bad/gold/bad_lib_type.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7946", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_lib_type2.scilla.gold b/tests/checker/bad/gold/bad_lib_type2.scilla.gold index 7fc694c3e..374a93e44 100644 --- a/tests/checker/bad/gold/bad_lib_type2.scilla.gold +++ b/tests/checker/bad/gold/bad_lib_type2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7894", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_lib_type3.scilla.gold b/tests/checker/bad/gold/bad_lib_type3.scilla.gold index 1daa0a857..6be951856 100644 --- a/tests/checker/bad/gold/bad_lib_type3.scilla.gold +++ b/tests/checker/bad/gold/bad_lib_type3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7892", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_map_key_1.scilla.gold b/tests/checker/bad/gold/bad_map_key_1.scilla.gold index d170d2b39..dc01460a0 100644 --- a/tests/checker/bad/gold/bad_map_key_1.scilla.gold +++ b/tests/checker/bad/gold/bad_map_key_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7976", "errors": [ { "error_message": "Ends in an error in state: 97.\n", diff --git a/tests/checker/bad/gold/bad_map_key_5.scilla.gold b/tests/checker/bad/gold/bad_map_key_5.scilla.gold index fb474b8b7..6e492c747 100644 --- a/tests/checker/bad/gold/bad_map_key_5.scilla.gold +++ b/tests/checker/bad/gold/bad_map_key_5.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7956", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_message1.scilla.gold b/tests/checker/bad/gold/bad_message1.scilla.gold index 0f07857df..99eb8ef46 100644 --- a/tests/checker/bad/gold/bad_message1.scilla.gold +++ b/tests/checker/bad/gold/bad_message1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7970", "errors": [ { "error_message": "Cannot serialize values of type Message.", diff --git a/tests/checker/bad/gold/bad_message2.scilla.gold b/tests/checker/bad/gold/bad_message2.scilla.gold index 1b9ea0248..b0c7c08a0 100644 --- a/tests/checker/bad/gold/bad_message2.scilla.gold +++ b/tests/checker/bad/gold/bad_message2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7921", "errors": [ { "error_message": "Missing _amount or _recipient in Message\n", diff --git a/tests/checker/bad/gold/bad_param.scilla.gold b/tests/checker/bad/gold/bad_param.scilla.gold index 24cd7eeef..e52080b19 100644 --- a/tests/checker/bad/gold/bad_param.scilla.gold +++ b/tests/checker/bad/gold/bad_param.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7989", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_transition_param.scilla.gold b/tests/checker/bad/gold/bad_transition_param.scilla.gold index 67dd70e87..3381ffa97 100644 --- a/tests/checker/bad/gold/bad_transition_param.scilla.gold +++ b/tests/checker/bad/gold/bad_transition_param.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7980", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/balance_field.scilla.gold b/tests/checker/bad/gold/balance_field.scilla.gold index 74ec3a8ac..873c4688c 100644 --- a/tests/checker/bad/gold/balance_field.scilla.gold +++ b/tests/checker/bad/gold/balance_field.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7989", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/builtin_type_args.scilla.gold b/tests/checker/bad/gold/builtin_type_args.scilla.gold index e92ce90fa..1fc628b22 100644 --- a/tests/checker/bad/gold/builtin_type_args.scilla.gold +++ b/tests/checker/bad/gold/builtin_type_args.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7977", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/constraint_field_not_in_scope.scilla.gold b/tests/checker/bad/gold/constraint_field_not_in_scope.scilla.gold index 6a1669137..2cb8a20a9 100644 --- a/tests/checker/bad/gold/constraint_field_not_in_scope.scilla.gold +++ b/tests/checker/bad/gold/constraint_field_not_in_scope.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7988", "errors": [ { "error_message": "Couldn't resolve the identifier \"f\".\n", diff --git a/tests/checker/bad/gold/constraint_locals_not_in_scope.scilla.gold b/tests/checker/bad/gold/constraint_locals_not_in_scope.scilla.gold index 96dc69a46..68c46a1eb 100644 --- a/tests/checker/bad/gold/constraint_locals_not_in_scope.scilla.gold +++ b/tests/checker/bad/gold/constraint_locals_not_in_scope.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7982", "errors": [ { "error_message": "Couldn't resolve the identifier \"x\".\n", diff --git a/tests/checker/bad/gold/constraint_type_illegal.scilla.gold b/tests/checker/bad/gold/constraint_type_illegal.scilla.gold index e260a8ea0..9c74ccc2f 100644 --- a/tests/checker/bad/gold/constraint_type_illegal.scilla.gold +++ b/tests/checker/bad/gold/constraint_type_illegal.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7988", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/event_bad1.scilla.gold b/tests/checker/bad/gold/event_bad1.scilla.gold index 9058e72e0..7b841d5d0 100644 --- a/tests/checker/bad/gold/event_bad1.scilla.gold +++ b/tests/checker/bad/gold/event_bad1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7429", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/event_bad2.scilla.gold b/tests/checker/bad/gold/event_bad2.scilla.gold index c34958e48..4c2ae163a 100644 --- a/tests/checker/bad/gold/event_bad2.scilla.gold +++ b/tests/checker/bad/gold/event_bad2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7442", "errors": [ { "error_message": "Error determining event name\n", diff --git a/tests/checker/bad/gold/forward_definition_procedure.scilla.gold b/tests/checker/bad/gold/forward_definition_procedure.scilla.gold index 28dfb5759..a40337aee 100644 --- a/tests/checker/bad/gold/forward_definition_procedure.scilla.gold +++ b/tests/checker/bad/gold/forward_definition_procedure.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7957", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/global_scope_procedures.scilla.gold b/tests/checker/bad/gold/global_scope_procedures.scilla.gold index f82f0e010..b05f40fd5 100644 --- a/tests/checker/bad/gold/global_scope_procedures.scilla.gold +++ b/tests/checker/bad/gold/global_scope_procedures.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7959", "errors": [ { "error_message": "Type error(s) in contract GlobalScopeProcedure:\n", diff --git a/tests/checker/bad/gold/homonymous_vars.scilla.gold b/tests/checker/bad/gold/homonymous_vars.scilla.gold index 402c2586b..6565a8549 100644 --- a/tests/checker/bad/gold/homonymous_vars.scilla.gold +++ b/tests/checker/bad/gold/homonymous_vars.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7945", "errors": [ { "error_message": "Couldn't resolve the identifier \"sxamount\".\n", diff --git a/tests/checker/bad/gold/homonymous_vars2.scilla.gold b/tests/checker/bad/gold/homonymous_vars2.scilla.gold index ee3dc4e72..92c73f9d0 100644 --- a/tests/checker/bad/gold/homonymous_vars2.scilla.gold +++ b/tests/checker/bad/gold/homonymous_vars2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7935", "errors": [ { "error_message": "Couldn't resolve the identifier \"sxamount\".\n", diff --git a/tests/checker/bad/gold/homonymous_vars3.scilla.gold b/tests/checker/bad/gold/homonymous_vars3.scilla.gold index d9bc6b8c0..d7094a56e 100644 --- a/tests/checker/bad/gold/homonymous_vars3.scilla.gold +++ b/tests/checker/bad/gold/homonymous_vars3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7945", "errors": [ { "error_message": "Couldn't resolve the identifier \"sxamount\".\n", diff --git a/tests/checker/bad/gold/import-test-lib-bad_1.scilla.gold b/tests/checker/bad/gold/import-test-lib-bad_1.scilla.gold index 3e2e50a95..8ecabcfc3 100644 --- a/tests/checker/bad/gold/import-test-lib-bad_1.scilla.gold +++ b/tests/checker/bad/gold/import-test-lib-bad_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7812", "errors": [ { "error_message": "Cannot serialize values of type BaseType2.", diff --git a/tests/checker/bad/gold/import-test-lib-bad_2.scilla.gold b/tests/checker/bad/gold/import-test-lib-bad_2.scilla.gold index 8cb1df19f..beb83d607 100644 --- a/tests/checker/bad/gold/import-test-lib-bad_2.scilla.gold +++ b/tests/checker/bad/gold/import-test-lib-bad_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7945", "errors": [ { "error_message": "Type error(s) in contract ImportNestedTestLibBad2:\n", diff --git a/tests/checker/bad/gold/import-test-lib-bad_3.scilla.gold b/tests/checker/bad/gold/import-test-lib-bad_3.scilla.gold index 44ed2fbd5..7faea756a 100644 --- a/tests/checker/bad/gold/import-test-lib-bad_3.scilla.gold +++ b/tests/checker/bad/gold/import-test-lib-bad_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7953", "errors": [ { "error_message": "Type error(s) in contract ImportNestedTestLibBad3:\n", diff --git a/tests/checker/bad/gold/inplace-map.scilla.gold b/tests/checker/bad/gold/inplace-map.scilla.gold index 1d92ca955..f8fa0d2ae 100644 --- a/tests/checker/bad/gold/inplace-map.scilla.gold +++ b/tests/checker/bad/gold/inplace-map.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7913", + "gas_remaining": "7677", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/lib_bad1.scilla.gold b/tests/checker/bad/gold/lib_bad1.scilla.gold index 430f0100e..cb5cb9f0f 100644 --- a/tests/checker/bad/gold/lib_bad1.scilla.gold +++ b/tests/checker/bad/gold/lib_bad1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7819", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/libdup1.scilla.gold b/tests/checker/bad/gold/libdup1.scilla.gold index f6707dd89..93f5d1c39 100644 --- a/tests/checker/bad/gold/libdup1.scilla.gold +++ b/tests/checker/bad/gold/libdup1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7992", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/libdup2.scilla.gold b/tests/checker/bad/gold/libdup2.scilla.gold index 31e88a896..56d1d345f 100644 --- a/tests/checker/bad/gold/libdup2.scilla.gold +++ b/tests/checker/bad/gold/libdup2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7985", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/libindirect.scilla.gold b/tests/checker/bad/gold/libindirect.scilla.gold index 409dd0bd4..dc61b8166 100644 --- a/tests/checker/bad/gold/libindirect.scilla.gold +++ b/tests/checker/bad/gold/libindirect.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7917", + "gas_remaining": "7896", "errors": [ { "error_message": "Couldn't resolve the identifier \"list_sort\".\n", diff --git a/tests/checker/bad/gold/listiter-bad.scilla.gold b/tests/checker/bad/gold/listiter-bad.scilla.gold index 11d1d0ee9..83b0b6155 100644 --- a/tests/checker/bad/gold/listiter-bad.scilla.gold +++ b/tests/checker/bad/gold/listiter-bad.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7957", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/map_value_function.scilla.gold b/tests/checker/bad/gold/map_value_function.scilla.gold index e5587e0f8..9a36ef955 100644 --- a/tests/checker/bad/gold/map_value_function.scilla.gold +++ b/tests/checker/bad/gold/map_value_function.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7970", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/mappair.scilla.gold b/tests/checker/bad/gold/mappair.scilla.gold index 4680c18db..044e20f80 100644 --- a/tests/checker/bad/gold/mappair.scilla.gold +++ b/tests/checker/bad/gold/mappair.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7909", + "gas_remaining": "7618", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/mappair2.scilla.gold b/tests/checker/bad/gold/mappair2.scilla.gold index 0e7f34f14..695061771 100644 --- a/tests/checker/bad/gold/mappair2.scilla.gold +++ b/tests/checker/bad/gold/mappair2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7909", + "gas_remaining": "7572", "errors": [ { "error_message": "Identifier malMessage1 used more than once\n", diff --git a/tests/checker/bad/gold/match-in-transition.scilla.gold b/tests/checker/bad/gold/match-in-transition.scilla.gold index 591bc11b7..eff6d6c90 100644 --- a/tests/checker/bad/gold/match-in-transition.scilla.gold +++ b/tests/checker/bad/gold/match-in-transition.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7970", "errors": [ { "error_message": "Type error(s) in contract Matcher:\n", diff --git a/tests/checker/bad/gold/message_field.scilla.gold b/tests/checker/bad/gold/message_field.scilla.gold index e04fe906c..ea85b8424 100644 --- a/tests/checker/bad/gold/message_field.scilla.gold +++ b/tests/checker/bad/gold/message_field.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7913", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/message_field2.scilla.gold b/tests/checker/bad/gold/message_field2.scilla.gold index 68a655b9a..6b6a50b78 100644 --- a/tests/checker/bad/gold/message_field2.scilla.gold +++ b/tests/checker/bad/gold/message_field2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7947", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/message_field3.scilla.gold b/tests/checker/bad/gold/message_field3.scilla.gold index 922742bd2..51efea0dd 100644 --- a/tests/checker/bad/gold/message_field3.scilla.gold +++ b/tests/checker/bad/gold/message_field3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7946", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/mutually_recursive_procedure.scilla.gold b/tests/checker/bad/gold/mutually_recursive_procedure.scilla.gold index cb7ca6cff..f0ed1a6c1 100644 --- a/tests/checker/bad/gold/mutually_recursive_procedure.scilla.gold +++ b/tests/checker/bad/gold/mutually_recursive_procedure.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7962", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/name_clashes.scilla.gold b/tests/checker/bad/gold/name_clashes.scilla.gold index b32aad9ba..eb75f26ec 100644 --- a/tests/checker/bad/gold/name_clashes.scilla.gold +++ b/tests/checker/bad/gold/name_clashes.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7916", "errors": [ { "error_message": "Identifier Proc1 used more than once\n", diff --git a/tests/checker/bad/gold/namespace1.scilla.gold b/tests/checker/bad/gold/namespace1.scilla.gold index 1c1f67bd0..e7107e575 100644 --- a/tests/checker/bad/gold/namespace1.scilla.gold +++ b/tests/checker/bad/gold/namespace1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7981", "errors": [ { "error_message": "Unknown namespace Bar", diff --git a/tests/checker/bad/gold/procedure_bad_args.scilla.gold b/tests/checker/bad/gold/procedure_bad_args.scilla.gold index 6dfb3a099..3c25cd30e 100644 --- a/tests/checker/bad/gold/procedure_bad_args.scilla.gold +++ b/tests/checker/bad/gold/procedure_bad_args.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7916", "errors": [ { "error_message": "Incorrect number of arguments to procedure", diff --git a/tests/checker/bad/gold/procedure_bad_type.scilla.gold b/tests/checker/bad/gold/procedure_bad_type.scilla.gold index 2556a7d4c..50e5fc2ab 100644 --- a/tests/checker/bad/gold/procedure_bad_type.scilla.gold +++ b/tests/checker/bad/gold/procedure_bad_type.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7952", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/procedure_env.scilla.gold b/tests/checker/bad/gold/procedure_env.scilla.gold index ca78c965f..253b33871 100644 --- a/tests/checker/bad/gold/procedure_env.scilla.gold +++ b/tests/checker/bad/gold/procedure_env.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7958", "errors": [ { "error_message": "Couldn't resolve the identifier \"_tag\".\n", diff --git a/tests/checker/bad/gold/procedure_map_arg.scilla.gold b/tests/checker/bad/gold/procedure_map_arg.scilla.gold index 9b575243d..39c0ee27b 100644 --- a/tests/checker/bad/gold/procedure_map_arg.scilla.gold +++ b/tests/checker/bad/gold/procedure_map_arg.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7898", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/recursive_procedure.scilla.gold b/tests/checker/bad/gold/recursive_procedure.scilla.gold index 4a3646944..4cc581580 100644 --- a/tests/checker/bad/gold/recursive_procedure.scilla.gold +++ b/tests/checker/bad/gold/recursive_procedure.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7975", "errors": [ { "error_message": "Type error(s) in contract RecursiveProcedure:\n", diff --git a/tests/checker/bad/gold/remote_read_bad_1.scilla.gold b/tests/checker/bad/gold/remote_read_bad_1.scilla.gold index 829d2134d..d66a4dea8 100644 --- a/tests/checker/bad/gold/remote_read_bad_1.scilla.gold +++ b/tests/checker/bad/gold/remote_read_bad_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7916", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/remote_read_bad_2.scilla.gold b/tests/checker/bad/gold/remote_read_bad_2.scilla.gold index 3e0ad48ed..a2960edfd 100644 --- a/tests/checker/bad/gold/remote_read_bad_2.scilla.gold +++ b/tests/checker/bad/gold/remote_read_bad_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7915", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/remote_read_bad_3.scilla.gold b/tests/checker/bad/gold/remote_read_bad_3.scilla.gold index f531c01e5..a61fd60a1 100644 --- a/tests/checker/bad/gold/remote_read_bad_3.scilla.gold +++ b/tests/checker/bad/gold/remote_read_bad_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7933", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/remote_read_non_address.scilla.gold b/tests/checker/bad/gold/remote_read_non_address.scilla.gold index c4f423762..eefce1061 100644 --- a/tests/checker/bad/gold/remote_read_non_address.scilla.gold +++ b/tests/checker/bad/gold/remote_read_non_address.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7981", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/remote_read_spid.scilla.gold b/tests/checker/bad/gold/remote_read_spid.scilla.gold index 58cd28d36..4742f8502 100644 --- a/tests/checker/bad/gold/remote_read_spid.scilla.gold +++ b/tests/checker/bad/gold/remote_read_spid.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7981", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/send_event1.scilla.gold b/tests/checker/bad/gold/send_event1.scilla.gold index 940510d34..891448abe 100644 --- a/tests/checker/bad/gold/send_event1.scilla.gold +++ b/tests/checker/bad/gold/send_event1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7160", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/send_event2.scilla.gold b/tests/checker/bad/gold/send_event2.scilla.gold index 29a93b99f..a2457f4f7 100644 --- a/tests/checker/bad/gold/send_event2.scilla.gold +++ b/tests/checker/bad/gold/send_event2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7161", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/unbound.scilla.gold b/tests/checker/bad/gold/unbound.scilla.gold index ff0d40f73..4dfc70fed 100644 --- a/tests/checker/bad/gold/unbound.scilla.gold +++ b/tests/checker/bad/gold/unbound.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7418", "errors": [ { "error_message": "Type error(s) in contract Crowdfunding:\n", diff --git a/tests/checker/bad/gold/unserializable_param.scilla.gold b/tests/checker/bad/gold/unserializable_param.scilla.gold index 5e9b41e39..795639d57 100644 --- a/tests/checker/bad/gold/unserializable_param.scilla.gold +++ b/tests/checker/bad/gold/unserializable_param.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7934", "errors": [ { "error_message": "Type Test cannot be used as transition parameter", diff --git a/tests/checker/bad/gold/unstorable_adt.scilla.gold b/tests/checker/bad/gold/unstorable_adt.scilla.gold index 10e4a9ea6..54a03f764 100644 --- a/tests/checker/bad/gold/unstorable_adt.scilla.gold +++ b/tests/checker/bad/gold/unstorable_adt.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7939", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/zil_mod.scilla.gold b/tests/checker/bad/gold/zil_mod.scilla.gold index 7c241dc1b..7eb0fedef 100644 --- a/tests/checker/bad/gold/zil_mod.scilla.gold +++ b/tests/checker/bad/gold/zil_mod.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "8000", + "gas_remaining": "7158", "errors": [ { "error_message": "Type error(s) in contract ZilGame:\n", diff --git a/tests/checker/good/gold/InstantiatedListUtils.scillib.gold b/tests/checker/good/gold/InstantiatedListUtils.scillib.gold index 2f74c8c1d..d816f62f5 100644 --- a/tests/checker/good/gold/InstantiatedListUtils.scillib.gold +++ b/tests/checker/good/gold/InstantiatedListUtils.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7917" } +{ "warnings": [], "gas_remaining": "7903" } diff --git a/tests/checker/good/gold/TestLibNS1.scillib.gold b/tests/checker/good/gold/TestLibNS1.scillib.gold index bfcd15542..a192769e2 100644 --- a/tests/checker/good/gold/TestLibNS1.scillib.gold +++ b/tests/checker/good/gold/TestLibNS1.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7999" } +{ "warnings": [], "gas_remaining": "7984" } diff --git a/tests/checker/good/gold/TestLibNS2.scillib.gold b/tests/checker/good/gold/TestLibNS2.scillib.gold index bfcd15542..aeddebed5 100644 --- a/tests/checker/good/gold/TestLibNS2.scillib.gold +++ b/tests/checker/good/gold/TestLibNS2.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7999" } +{ "warnings": [], "gas_remaining": "7989" } diff --git a/tests/checker/good/gold/TestLibNS3.scillib.gold b/tests/checker/good/gold/TestLibNS3.scillib.gold index bfcd15542..6f3733685 100644 --- a/tests/checker/good/gold/TestLibNS3.scillib.gold +++ b/tests/checker/good/gold/TestLibNS3.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7999" } +{ "warnings": [], "gas_remaining": "7973" } diff --git a/tests/checker/good/gold/TestLibNS4.scillib.gold b/tests/checker/good/gold/TestLibNS4.scillib.gold index bfcd15542..2217c8e3d 100644 --- a/tests/checker/good/gold/TestLibNS4.scillib.gold +++ b/tests/checker/good/gold/TestLibNS4.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7999" } +{ "warnings": [], "gas_remaining": "7975" } diff --git a/tests/checker/good/gold/UintParam.scilla.gold b/tests/checker/good/gold/UintParam.scilla.gold index e6756eb11..9448aad3d 100644 --- a/tests/checker/good/gold/UintParam.scilla.gold +++ b/tests/checker/good/gold/UintParam.scilla.gold @@ -86,6 +86,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7964" } diff --git a/tests/checker/good/gold/address_eq_test.scilla.gold b/tests/checker/good/gold/address_eq_test.scilla.gold index 4ae78292b..f98b23728 100644 --- a/tests/checker/good/gold/address_eq_test.scilla.gold +++ b/tests/checker/good/gold/address_eq_test.scilla.gold @@ -423,6 +423,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7512" } diff --git a/tests/checker/good/gold/address_list_as_cparam.scilla.gold b/tests/checker/good/gold/address_list_as_cparam.scilla.gold index 8cf1091ec..b1d1d89b1 100644 --- a/tests/checker/good/gold/address_list_as_cparam.scilla.gold +++ b/tests/checker/good/gold/address_list_as_cparam.scilla.gold @@ -84,6 +84,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7981" } diff --git a/tests/checker/good/gold/address_list_traversal.scilla.gold b/tests/checker/good/gold/address_list_traversal.scilla.gold index 8b6c43197..e592a1918 100644 --- a/tests/checker/good/gold/address_list_traversal.scilla.gold +++ b/tests/checker/good/gold/address_list_traversal.scilla.gold @@ -126,6 +126,6 @@ "warning_id": 1 } ], - "gas_remaining": "7913" + "gas_remaining": "7714" } diff --git a/tests/checker/good/gold/adt_test.scilla.gold b/tests/checker/good/gold/adt_test.scilla.gold index 94cef0cfe..54334f3cd 100644 --- a/tests/checker/good/gold/adt_test.scilla.gold +++ b/tests/checker/good/gold/adt_test.scilla.gold @@ -112,6 +112,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7957" } diff --git a/tests/checker/good/gold/auction.scilla.gold b/tests/checker/good/gold/auction.scilla.gold index 1c4917650..4a09468d4 100644 --- a/tests/checker/good/gold/auction.scilla.gold +++ b/tests/checker/good/gold/auction.scilla.gold @@ -105,6 +105,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7406" } diff --git a/tests/checker/good/gold/auction.scilla.typeinfo.gold b/tests/checker/good/gold/auction.scilla.typeinfo.gold index 632509a52..686b86b33 100644 --- a/tests/checker/good/gold/auction.scilla.typeinfo.gold +++ b/tests/checker/good/gold/auction.scilla.typeinfo.gold @@ -2699,6 +2699,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7406" } diff --git a/tests/checker/good/gold/backward_definition_procedure.scilla.gold b/tests/checker/good/gold/backward_definition_procedure.scilla.gold index 65fd62acc..0ec23c4f4 100644 --- a/tests/checker/good/gold/backward_definition_procedure.scilla.gold +++ b/tests/checker/good/gold/backward_definition_procedure.scilla.gold @@ -93,6 +93,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7959" } diff --git a/tests/checker/good/gold/blockchain_import.scilla.gold b/tests/checker/good/gold/blockchain_import.scilla.gold index d8f157de2..f5285b62f 100644 --- a/tests/checker/good/gold/blockchain_import.scilla.gold +++ b/tests/checker/good/gold/blockchain_import.scilla.gold @@ -11,6 +11,6 @@ "warning_id": 3 } ], - "gas_remaining": "7999" + "gas_remaining": "7914" } diff --git a/tests/checker/good/gold/blowup_1.scilla.gold b/tests/checker/good/gold/blowup_1.scilla.gold index 1219f5361..141a938e6 100644 --- a/tests/checker/good/gold/blowup_1.scilla.gold +++ b/tests/checker/good/gold/blowup_1.scilla.gold @@ -110,6 +110,6 @@ "warning_id": 1 } ], - "gas_remaining": "5951" + "gas_remaining": "5864" } diff --git a/tests/checker/good/gold/blowup_2.scilla.gold b/tests/checker/good/gold/blowup_2.scilla.gold index f7f96709f..06efca59b 100644 --- a/tests/checker/good/gold/blowup_2.scilla.gold +++ b/tests/checker/good/gold/blowup_2.scilla.gold @@ -110,6 +110,6 @@ "warning_id": 1 } ], - "gas_remaining": "3903" + "gas_remaining": "3811" } diff --git a/tests/checker/good/gold/bookstore.scilla.gold b/tests/checker/good/gold/bookstore.scilla.gold index 8637d1dc5..f4da105f7 100644 --- a/tests/checker/good/gold/bookstore.scilla.gold +++ b/tests/checker/good/gold/bookstore.scilla.gold @@ -245,6 +245,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "6832" } diff --git a/tests/checker/good/gold/builtin_type_args.scilla.gold b/tests/checker/good/gold/builtin_type_args.scilla.gold index 2ab145d5e..a571e3723 100644 --- a/tests/checker/good/gold/builtin_type_args.scilla.gold +++ b/tests/checker/good/gold/builtin_type_args.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7977" } diff --git a/tests/checker/good/gold/cashflow_test.scilla.gold b/tests/checker/good/gold/cashflow_test.scilla.gold index e35770288..35db519d9 100644 --- a/tests/checker/good/gold/cashflow_test.scilla.gold +++ b/tests/checker/good/gold/cashflow_test.scilla.gold @@ -134,6 +134,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7829" } diff --git a/tests/checker/good/gold/cfinvoke.scilla.gold b/tests/checker/good/gold/cfinvoke.scilla.gold index 0e2b3b90c..3bd7a6001 100644 --- a/tests/checker/good/gold/cfinvoke.scilla.gold +++ b/tests/checker/good/gold/cfinvoke.scilla.gold @@ -85,6 +85,6 @@ "warning_id": 3 } ], - "gas_remaining": "7999" + "gas_remaining": "7800" } diff --git a/tests/checker/good/gold/chain-call-balance-1.scilla.gold b/tests/checker/good/gold/chain-call-balance-1.scilla.gold index 98a84ffad..ce39f2650 100644 --- a/tests/checker/good/gold/chain-call-balance-1.scilla.gold +++ b/tests/checker/good/gold/chain-call-balance-1.scilla.gold @@ -58,6 +58,6 @@ ] }, "warnings": [], - "gas_remaining": "7999" + "gas_remaining": "7941" } diff --git a/tests/checker/good/gold/chain-call-balance-2.scilla.gold b/tests/checker/good/gold/chain-call-balance-2.scilla.gold index 4d34d6186..98f875133 100644 --- a/tests/checker/good/gold/chain-call-balance-2.scilla.gold +++ b/tests/checker/good/gold/chain-call-balance-2.scilla.gold @@ -55,6 +55,6 @@ ] }, "warnings": [], - "gas_remaining": "7999" + "gas_remaining": "7947" } diff --git a/tests/checker/good/gold/chain-call-balance-3.scilla.gold b/tests/checker/good/gold/chain-call-balance-3.scilla.gold index a33af4168..353018428 100644 --- a/tests/checker/good/gold/chain-call-balance-3.scilla.gold +++ b/tests/checker/good/gold/chain-call-balance-3.scilla.gold @@ -52,6 +52,6 @@ ] }, "warnings": [], - "gas_remaining": "7999" + "gas_remaining": "7950" } diff --git a/tests/checker/good/gold/constraint.scilla.gold b/tests/checker/good/gold/constraint.scilla.gold index 1309a41e6..0f9de7ca4 100644 --- a/tests/checker/good/gold/constraint.scilla.gold +++ b/tests/checker/good/gold/constraint.scilla.gold @@ -60,6 +60,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7976" } diff --git a/tests/checker/good/gold/constraint_scope.scilla.gold b/tests/checker/good/gold/constraint_scope.scilla.gold index 30bb89a66..acb05338e 100644 --- a/tests/checker/good/gold/constraint_scope.scilla.gold +++ b/tests/checker/good/gold/constraint_scope.scilla.gold @@ -137,6 +137,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7933" } diff --git a/tests/checker/good/gold/crowdfunding.scilla.gold b/tests/checker/good/gold/crowdfunding.scilla.gold index 95ec6b1d1..aad0667ce 100644 --- a/tests/checker/good/gold/crowdfunding.scilla.gold +++ b/tests/checker/good/gold/crowdfunding.scilla.gold @@ -139,6 +139,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7477" } diff --git a/tests/checker/good/gold/crowdfunding_proc.scilla.gold b/tests/checker/good/gold/crowdfunding_proc.scilla.gold index 06a84562d..40c785d07 100644 --- a/tests/checker/good/gold/crowdfunding_proc.scilla.gold +++ b/tests/checker/good/gold/crowdfunding_proc.scilla.gold @@ -132,6 +132,6 @@ ] }, "warnings": [], - "gas_remaining": "7999" + "gas_remaining": "7417" } diff --git a/tests/checker/good/gold/dead_code_test1.scilla.gold b/tests/checker/good/gold/dead_code_test1.scilla.gold index 9d091b923..5842998ee 100644 --- a/tests/checker/good/gold/dead_code_test1.scilla.gold +++ b/tests/checker/good/gold/dead_code_test1.scilla.gold @@ -378,6 +378,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "6833" } diff --git a/tests/checker/good/gold/dead_code_test2.scilla.gold b/tests/checker/good/gold/dead_code_test2.scilla.gold index ba23659ea..8b6ebd8c1 100644 --- a/tests/checker/good/gold/dead_code_test2.scilla.gold +++ b/tests/checker/good/gold/dead_code_test2.scilla.gold @@ -88,6 +88,6 @@ "warning_id": 3 } ], - "gas_remaining": "7999" + "gas_remaining": "7947" } diff --git a/tests/checker/good/gold/dead_code_test3.scilla.gold b/tests/checker/good/gold/dead_code_test3.scilla.gold index 4d39be5ed..2e564a7a9 100644 --- a/tests/checker/good/gold/dead_code_test3.scilla.gold +++ b/tests/checker/good/gold/dead_code_test3.scilla.gold @@ -87,6 +87,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7959" } diff --git a/tests/checker/good/gold/dead_code_test4.scilla.gold b/tests/checker/good/gold/dead_code_test4.scilla.gold index d846d1592..cbb96bc54 100644 --- a/tests/checker/good/gold/dead_code_test4.scilla.gold +++ b/tests/checker/good/gold/dead_code_test4.scilla.gold @@ -134,6 +134,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7930" } diff --git a/tests/checker/good/gold/earmarked-coin.scilla.gold b/tests/checker/good/gold/earmarked-coin.scilla.gold index c24ef47ac..024eec543 100644 --- a/tests/checker/good/gold/earmarked-coin.scilla.gold +++ b/tests/checker/good/gold/earmarked-coin.scilla.gold @@ -142,6 +142,6 @@ "warning_id": 3 } ], - "gas_remaining": "7999" + "gas_remaining": "7554" } diff --git a/tests/checker/good/gold/ecdsa.scilla.gold b/tests/checker/good/gold/ecdsa.scilla.gold index 914fee24a..6299b8cf4 100644 --- a/tests/checker/good/gold/ecdsa.scilla.gold +++ b/tests/checker/good/gold/ecdsa.scilla.gold @@ -113,6 +113,6 @@ "warning_id": 1 } ], - "gas_remaining": "7997" + "gas_remaining": "7875" } diff --git a/tests/checker/good/gold/empty.scilla.gold b/tests/checker/good/gold/empty.scilla.gold index e6beb764f..c460b60f9 100644 --- a/tests/checker/good/gold/empty.scilla.gold +++ b/tests/checker/good/gold/empty.scilla.gold @@ -107,6 +107,6 @@ "warning_id": 1 } ], - "gas_remaining": "7855" + "gas_remaining": "7834" } diff --git a/tests/checker/good/gold/event_reordered_fields.scilla.gold b/tests/checker/good/gold/event_reordered_fields.scilla.gold index 158fd89fd..5a3f9ade4 100644 --- a/tests/checker/good/gold/event_reordered_fields.scilla.gold +++ b/tests/checker/good/gold/event_reordered_fields.scilla.gold @@ -100,6 +100,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7973" } diff --git a/tests/checker/good/gold/fungible-token.scilla.gold b/tests/checker/good/gold/fungible-token.scilla.gold index 739ab6628..2759d388d 100644 --- a/tests/checker/good/gold/fungible-token.scilla.gold +++ b/tests/checker/good/gold/fungible-token.scilla.gold @@ -156,6 +156,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7232" } diff --git a/tests/checker/good/gold/helloWorld.scilla.gold b/tests/checker/good/gold/helloWorld.scilla.gold index 85a90b6c6..255cbb742 100644 --- a/tests/checker/good/gold/helloWorld.scilla.gold +++ b/tests/checker/good/gold/helloWorld.scilla.gold @@ -94,6 +94,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7744" } diff --git a/tests/checker/good/gold/import-test-lib.scilla.gold b/tests/checker/good/gold/import-test-lib.scilla.gold index 432320f45..087cce090 100644 --- a/tests/checker/good/gold/import-test-lib.scilla.gold +++ b/tests/checker/good/gold/import-test-lib.scilla.gold @@ -126,6 +126,6 @@ "warning_id": 1 } ], - "gas_remaining": "7859" + "gas_remaining": "7515" } diff --git a/tests/checker/good/gold/import-test-lib2.scilla.gold b/tests/checker/good/gold/import-test-lib2.scilla.gold index 439d044f7..fd87c6d4a 100644 --- a/tests/checker/good/gold/import-test-lib2.scilla.gold +++ b/tests/checker/good/gold/import-test-lib2.scilla.gold @@ -119,6 +119,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7711" } diff --git a/tests/checker/good/gold/import-test-lib3.scilla.gold b/tests/checker/good/gold/import-test-lib3.scilla.gold index 371ed5538..43b45ebeb 100644 --- a/tests/checker/good/gold/import-test-lib3.scilla.gold +++ b/tests/checker/good/gold/import-test-lib3.scilla.gold @@ -81,6 +81,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7767" } diff --git a/tests/checker/good/gold/inplace-map.scilla.gold b/tests/checker/good/gold/inplace-map.scilla.gold index 6defd3e43..a959a65fe 100644 --- a/tests/checker/good/gold/inplace-map.scilla.gold +++ b/tests/checker/good/gold/inplace-map.scilla.gold @@ -141,6 +141,6 @@ "warning_id": 1 } ], - "gas_remaining": "7913" + "gas_remaining": "7688" } diff --git a/tests/checker/good/gold/lib_typing.scilla.gold b/tests/checker/good/gold/lib_typing.scilla.gold index ad7f71ce5..18631b5de 100644 --- a/tests/checker/good/gold/lib_typing.scilla.gold +++ b/tests/checker/good/gold/lib_typing.scilla.gold @@ -87,6 +87,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7984" } diff --git a/tests/checker/good/gold/lib_typing2.scilla.gold b/tests/checker/good/gold/lib_typing2.scilla.gold index b2385ca20..388deedf8 100644 --- a/tests/checker/good/gold/lib_typing2.scilla.gold +++ b/tests/checker/good/gold/lib_typing2.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7996" + "gas_remaining": "7895" } diff --git a/tests/checker/good/gold/libchain1.scilla.gold b/tests/checker/good/gold/libchain1.scilla.gold index 1d483d0e5..861b50c3a 100644 --- a/tests/checker/good/gold/libchain1.scilla.gold +++ b/tests/checker/good/gold/libchain1.scilla.gold @@ -95,6 +95,6 @@ "warning_id": 1 } ], - "gas_remaining": "7917" + "gas_remaining": "7904" } diff --git a/tests/checker/good/gold/libchain2.scilla.gold b/tests/checker/good/gold/libchain2.scilla.gold index 8f9f4771f..63bd5ec82 100644 --- a/tests/checker/good/gold/libchain2.scilla.gold +++ b/tests/checker/good/gold/libchain2.scilla.gold @@ -95,6 +95,6 @@ "warning_id": 1 } ], - "gas_remaining": "7916" + "gas_remaining": "7903" } diff --git a/tests/checker/good/gold/libdiamond.scilla.gold b/tests/checker/good/gold/libdiamond.scilla.gold index 8407b1e20..65366a57d 100644 --- a/tests/checker/good/gold/libdiamond.scilla.gold +++ b/tests/checker/good/gold/libdiamond.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7989" } diff --git a/tests/checker/good/gold/libdiamond2.scilla.gold b/tests/checker/good/gold/libdiamond2.scilla.gold index a72ae6c0b..293e4a1b3 100644 --- a/tests/checker/good/gold/libdiamond2.scilla.gold +++ b/tests/checker/good/gold/libdiamond2.scilla.gold @@ -77,6 +77,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7980" } diff --git a/tests/checker/good/gold/listiter.scilla.gold b/tests/checker/good/gold/listiter.scilla.gold index c561533da..fe8f34c76 100644 --- a/tests/checker/good/gold/listiter.scilla.gold +++ b/tests/checker/good/gold/listiter.scilla.gold @@ -95,6 +95,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7957" } diff --git a/tests/checker/good/gold/map-inplace-update-with-_sender.scilla.gold b/tests/checker/good/gold/map-inplace-update-with-_sender.scilla.gold index d59ce149f..49c72afac 100644 --- a/tests/checker/good/gold/map-inplace-update-with-_sender.scilla.gold +++ b/tests/checker/good/gold/map-inplace-update-with-_sender.scilla.gold @@ -72,6 +72,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7981" } diff --git a/tests/checker/good/gold/map_as_cparam.scilla.gold b/tests/checker/good/gold/map_as_cparam.scilla.gold index 1a91fb746..03491c582 100644 --- a/tests/checker/good/gold/map_as_cparam.scilla.gold +++ b/tests/checker/good/gold/map_as_cparam.scilla.gold @@ -86,6 +86,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7966" } diff --git a/tests/checker/good/gold/map_corners_test.scilla.gold b/tests/checker/good/gold/map_corners_test.scilla.gold index 390ec907c..30fcebec3 100644 --- a/tests/checker/good/gold/map_corners_test.scilla.gold +++ b/tests/checker/good/gold/map_corners_test.scilla.gold @@ -265,6 +265,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "5967" } diff --git a/tests/checker/good/gold/map_corners_test.scilla.typeinfo.gold b/tests/checker/good/gold/map_corners_test.scilla.typeinfo.gold index 116ee06ce..f9c817a86 100644 --- a/tests/checker/good/gold/map_corners_test.scilla.typeinfo.gold +++ b/tests/checker/good/gold/map_corners_test.scilla.typeinfo.gold @@ -9870,6 +9870,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "5967" } diff --git a/tests/checker/good/gold/map_key_test.scilla.gold b/tests/checker/good/gold/map_key_test.scilla.gold index 62d76b85a..caa2a6b39 100644 --- a/tests/checker/good/gold/map_key_test.scilla.gold +++ b/tests/checker/good/gold/map_key_test.scilla.gold @@ -131,6 +131,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7970" } diff --git a/tests/checker/good/gold/map_no_inplace_warn.scilla.gold b/tests/checker/good/gold/map_no_inplace_warn.scilla.gold index 941aac1d9..9f2201b1f 100644 --- a/tests/checker/good/gold/map_no_inplace_warn.scilla.gold +++ b/tests/checker/good/gold/map_no_inplace_warn.scilla.gold @@ -163,6 +163,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7936" } diff --git a/tests/checker/good/gold/mappair.scilla.gold b/tests/checker/good/gold/mappair.scilla.gold index 51856f44d..0d97fec46 100644 --- a/tests/checker/good/gold/mappair.scilla.gold +++ b/tests/checker/good/gold/mappair.scilla.gold @@ -157,6 +157,6 @@ "warning_id": 1 } ], - "gas_remaining": "7907" + "gas_remaining": "7547" } diff --git a/tests/checker/good/gold/missing-accepts.scilla.gold b/tests/checker/good/gold/missing-accepts.scilla.gold index 8c04f939f..4e67d2476 100644 --- a/tests/checker/good/gold/missing-accepts.scilla.gold +++ b/tests/checker/good/gold/missing-accepts.scilla.gold @@ -83,6 +83,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7976" } diff --git a/tests/checker/good/gold/multiple-accepts.scilla.gold b/tests/checker/good/gold/multiple-accepts.scilla.gold index 2262de52d..8dd781e6c 100644 --- a/tests/checker/good/gold/multiple-accepts.scilla.gold +++ b/tests/checker/good/gold/multiple-accepts.scilla.gold @@ -309,6 +309,6 @@ "warning_id": 1 } ], - "gas_remaining": "7941" + "gas_remaining": "7705" } diff --git a/tests/checker/good/gold/multiple-msgs.scilla.gold b/tests/checker/good/gold/multiple-msgs.scilla.gold index 2aa77def6..9ff54994d 100644 --- a/tests/checker/good/gold/multiple-msgs.scilla.gold +++ b/tests/checker/good/gold/multiple-msgs.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7822" } diff --git a/tests/checker/good/gold/namespace1.scilla.gold b/tests/checker/good/gold/namespace1.scilla.gold index 7160ecc3b..e77fdf293 100644 --- a/tests/checker/good/gold/namespace1.scilla.gold +++ b/tests/checker/good/gold/namespace1.scilla.gold @@ -95,6 +95,6 @@ "warning_id": 1 } ], - "gas_remaining": "7917" + "gas_remaining": "7904" } diff --git a/tests/checker/good/gold/namespace2.scilla.gold b/tests/checker/good/gold/namespace2.scilla.gold index 8c22c07e4..7362c4d40 100644 --- a/tests/checker/good/gold/namespace2.scilla.gold +++ b/tests/checker/good/gold/namespace2.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7906" } diff --git a/tests/checker/good/gold/namespace3.scilla.gold b/tests/checker/good/gold/namespace3.scilla.gold index 5a7ca3624..16a11a4df 100644 --- a/tests/checker/good/gold/namespace3.scilla.gold +++ b/tests/checker/good/gold/namespace3.scilla.gold @@ -124,6 +124,6 @@ "warning_id": 1 } ], - "gas_remaining": "7917" + "gas_remaining": "7888" } diff --git a/tests/checker/good/gold/nested-comments.scilla.gold b/tests/checker/good/gold/nested-comments.scilla.gold index 731e6dd63..b10786ea5 100644 --- a/tests/checker/good/gold/nested-comments.scilla.gold +++ b/tests/checker/good/gold/nested-comments.scilla.gold @@ -57,6 +57,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7971" } diff --git a/tests/checker/good/gold/nonfungible-token.scilla.gold b/tests/checker/good/gold/nonfungible-token.scilla.gold index 3d08bddb6..f482ee652 100644 --- a/tests/checker/good/gold/nonfungible-token.scilla.gold +++ b/tests/checker/good/gold/nonfungible-token.scilla.gold @@ -342,6 +342,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "6462" } diff --git a/tests/checker/good/gold/one-accept.scilla.gold b/tests/checker/good/gold/one-accept.scilla.gold index 2fb22a1d4..4ab867100 100644 --- a/tests/checker/good/gold/one-accept.scilla.gold +++ b/tests/checker/good/gold/one-accept.scilla.gold @@ -65,6 +65,6 @@ ] }, "warnings": [], - "gas_remaining": "7999" + "gas_remaining": "7919" } diff --git a/tests/checker/good/gold/one-msg.scilla.gold b/tests/checker/good/gold/one-msg.scilla.gold index fa277cea4..d951ddfc2 100644 --- a/tests/checker/good/gold/one-msg.scilla.gold +++ b/tests/checker/good/gold/one-msg.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7815" } diff --git a/tests/checker/good/gold/one-msg1.scilla.gold b/tests/checker/good/gold/one-msg1.scilla.gold index b083e1194..d8e37bb7d 100644 --- a/tests/checker/good/gold/one-msg1.scilla.gold +++ b/tests/checker/good/gold/one-msg1.scilla.gold @@ -77,6 +77,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7794" } diff --git a/tests/checker/good/gold/one-msg2.scilla.gold b/tests/checker/good/gold/one-msg2.scilla.gold index 5c14a65e6..cb701fc50 100644 --- a/tests/checker/good/gold/one-msg2.scilla.gold +++ b/tests/checker/good/gold/one-msg2.scilla.gold @@ -72,6 +72,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7804" } diff --git a/tests/checker/good/gold/one-msg3.scilla.gold b/tests/checker/good/gold/one-msg3.scilla.gold index 14104976b..a56632e02 100644 --- a/tests/checker/good/gold/one-msg3.scilla.gold +++ b/tests/checker/good/gold/one-msg3.scilla.gold @@ -82,6 +82,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7813" } diff --git a/tests/checker/good/gold/one-transition-accepts.scilla.gold b/tests/checker/good/gold/one-transition-accepts.scilla.gold index 6f1c87cdb..d249b5a25 100644 --- a/tests/checker/good/gold/one-transition-accepts.scilla.gold +++ b/tests/checker/good/gold/one-transition-accepts.scilla.gold @@ -76,6 +76,6 @@ "warning_id": 3 } ], - "gas_remaining": "7999" + "gas_remaining": "7978" } diff --git a/tests/checker/good/gold/one-transition-might-accept.scilla.gold b/tests/checker/good/gold/one-transition-might-accept.scilla.gold index b823846ec..600c13441 100644 --- a/tests/checker/good/gold/one-transition-might-accept.scilla.gold +++ b/tests/checker/good/gold/one-transition-might-accept.scilla.gold @@ -69,6 +69,6 @@ "warning_id": 3 } ], - "gas_remaining": "7999" + "gas_remaining": "7964" } diff --git a/tests/checker/good/gold/ping.scilla.gold b/tests/checker/good/gold/ping.scilla.gold index 2475c8ef2..84d74fc15 100644 --- a/tests/checker/good/gold/ping.scilla.gold +++ b/tests/checker/good/gold/ping.scilla.gold @@ -76,6 +76,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7856" } diff --git a/tests/checker/good/gold/polymorphic_address.scilla.gold b/tests/checker/good/gold/polymorphic_address.scilla.gold index 2c2525ac6..86c3f20e3 100644 --- a/tests/checker/good/gold/polymorphic_address.scilla.gold +++ b/tests/checker/good/gold/polymorphic_address.scilla.gold @@ -117,6 +117,6 @@ "warning_id": 1 } ], - "gas_remaining": "7916" + "gas_remaining": "7823" } diff --git a/tests/checker/good/gold/pong.scilla.gold b/tests/checker/good/gold/pong.scilla.gold index 859563013..bc0fd4a95 100644 --- a/tests/checker/good/gold/pong.scilla.gold +++ b/tests/checker/good/gold/pong.scilla.gold @@ -76,6 +76,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7856" } diff --git a/tests/checker/good/gold/remote_state_reads.scilla.gold b/tests/checker/good/gold/remote_state_reads.scilla.gold index fc56a766e..49affff73 100644 --- a/tests/checker/good/gold/remote_state_reads.scilla.gold +++ b/tests/checker/good/gold/remote_state_reads.scilla.gold @@ -592,6 +592,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7157" } diff --git a/tests/checker/good/gold/remote_state_reads_2.scilla.gold b/tests/checker/good/gold/remote_state_reads_2.scilla.gold index 2dd5f14d4..c8e4c7de8 100644 --- a/tests/checker/good/gold/remote_state_reads_2.scilla.gold +++ b/tests/checker/good/gold/remote_state_reads_2.scilla.gold @@ -156,6 +156,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7750" } diff --git a/tests/checker/good/gold/schnorr.scilla.gold b/tests/checker/good/gold/schnorr.scilla.gold index 324fe7048..44182db06 100644 --- a/tests/checker/good/gold/schnorr.scilla.gold +++ b/tests/checker/good/gold/schnorr.scilla.gold @@ -111,6 +111,6 @@ "warning_id": 1 } ], - "gas_remaining": "7997" + "gas_remaining": "7874" } diff --git a/tests/checker/good/gold/shadow_import.scilla.gold b/tests/checker/good/gold/shadow_import.scilla.gold index 7de694293..26e44f511 100644 --- a/tests/checker/good/gold/shadow_import.scilla.gold +++ b/tests/checker/good/gold/shadow_import.scilla.gold @@ -86,6 +86,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7856" } diff --git a/tests/checker/good/gold/shadowwarn1.scilla.gold b/tests/checker/good/gold/shadowwarn1.scilla.gold index 5ece7395b..2eccffdd2 100644 --- a/tests/checker/good/gold/shadowwarn1.scilla.gold +++ b/tests/checker/good/gold/shadowwarn1.scilla.gold @@ -92,6 +92,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7989" } diff --git a/tests/checker/good/gold/shadowwarn2.scilla.gold b/tests/checker/good/gold/shadowwarn2.scilla.gold index 4312a8957..e3d0088d3 100644 --- a/tests/checker/good/gold/shadowwarn2.scilla.gold +++ b/tests/checker/good/gold/shadowwarn2.scilla.gold @@ -129,6 +129,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7982" } diff --git a/tests/checker/good/gold/shadowwarn3.scilla.gold b/tests/checker/good/gold/shadowwarn3.scilla.gold index 22ca7cadc..97d0cf286 100644 --- a/tests/checker/good/gold/shadowwarn3.scilla.gold +++ b/tests/checker/good/gold/shadowwarn3.scilla.gold @@ -129,6 +129,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7965" } diff --git a/tests/checker/good/gold/shogi.scilla.gold b/tests/checker/good/gold/shogi.scilla.gold index 1c2b0b558..0e67681a4 100644 --- a/tests/checker/good/gold/shogi.scilla.gold +++ b/tests/checker/good/gold/shogi.scilla.gold @@ -245,6 +245,6 @@ "warning_id": 1 } ], - "gas_remaining": "7915" + "gas_remaining": "4597" } diff --git a/tests/checker/good/gold/shogi_proc.scilla.gold b/tests/checker/good/gold/shogi_proc.scilla.gold index 0c40b8048..9301fe455 100644 --- a/tests/checker/good/gold/shogi_proc.scilla.gold +++ b/tests/checker/good/gold/shogi_proc.scilla.gold @@ -297,6 +297,6 @@ "warning_id": 1 } ], - "gas_remaining": "7915" + "gas_remaining": "4797" } diff --git a/tests/checker/good/gold/simple-dex-remote-reads.scilla.gold b/tests/checker/good/gold/simple-dex-remote-reads.scilla.gold index cbb721612..f46deb83d 100644 --- a/tests/checker/good/gold/simple-dex-remote-reads.scilla.gold +++ b/tests/checker/good/gold/simple-dex-remote-reads.scilla.gold @@ -294,6 +294,6 @@ "warning_id": 1 } ], - "gas_remaining": "7941" + "gas_remaining": "6577" } diff --git a/tests/checker/good/gold/simple-dex-shadowwarn.scilla.gold b/tests/checker/good/gold/simple-dex-shadowwarn.scilla.gold index f64845107..f95517bff 100644 --- a/tests/checker/good/gold/simple-dex-shadowwarn.scilla.gold +++ b/tests/checker/good/gold/simple-dex-shadowwarn.scilla.gold @@ -201,6 +201,6 @@ "warning_id": 1 } ], - "gas_remaining": "7993" + "gas_remaining": "6876" } diff --git a/tests/checker/good/gold/simple-dex.scilla.gold b/tests/checker/good/gold/simple-dex.scilla.gold index 7a4ab3385..6e91a2140 100644 --- a/tests/checker/good/gold/simple-dex.scilla.gold +++ b/tests/checker/good/gold/simple-dex.scilla.gold @@ -191,6 +191,6 @@ "warning_id": 1 } ], - "gas_remaining": "7993" + "gas_remaining": "6874" } diff --git a/tests/checker/good/gold/type_casts.scilla.gold b/tests/checker/good/gold/type_casts.scilla.gold index ed176c4dc..a2b5941b4 100644 --- a/tests/checker/good/gold/type_casts.scilla.gold +++ b/tests/checker/good/gold/type_casts.scilla.gold @@ -382,6 +382,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7314" } diff --git a/tests/checker/good/gold/ud-proxy.scilla.gold b/tests/checker/good/gold/ud-proxy.scilla.gold index 946120285..d809c1b6b 100644 --- a/tests/checker/good/gold/ud-proxy.scilla.gold +++ b/tests/checker/good/gold/ud-proxy.scilla.gold @@ -114,6 +114,6 @@ "warning_id": 1 } ], - "gas_remaining": "7918" + "gas_remaining": "7748" } diff --git a/tests/checker/good/gold/ud-registry.scilla.gold b/tests/checker/good/gold/ud-registry.scilla.gold index 3aaf987a8..6fd669a1b 100644 --- a/tests/checker/good/gold/ud-registry.scilla.gold +++ b/tests/checker/good/gold/ud-registry.scilla.gold @@ -245,6 +245,6 @@ "warning_id": 3 } ], - "gas_remaining": "7916" + "gas_remaining": "6429" } diff --git a/tests/checker/good/gold/wallet.scilla.gold b/tests/checker/good/gold/wallet.scilla.gold index 5be8a7648..cf5c71465 100644 --- a/tests/checker/good/gold/wallet.scilla.gold +++ b/tests/checker/good/gold/wallet.scilla.gold @@ -375,6 +375,6 @@ "warning_id": 1 } ], - "gas_remaining": "7856" + "gas_remaining": "5731" } diff --git a/tests/checker/good/gold/wallet_2.scilla.gold b/tests/checker/good/gold/wallet_2.scilla.gold index 33368fd20..5be76e195 100644 --- a/tests/checker/good/gold/wallet_2.scilla.gold +++ b/tests/checker/good/gold/wallet_2.scilla.gold @@ -231,6 +231,6 @@ "warning_id": 3 } ], - "gas_remaining": "7856" + "gas_remaining": "6088" } diff --git a/tests/checker/good/gold/zil-game.scilla.gold b/tests/checker/good/gold/zil-game.scilla.gold index 2f213779a..050a2ad91 100644 --- a/tests/checker/good/gold/zil-game.scilla.gold +++ b/tests/checker/good/gold/zil-game.scilla.gold @@ -117,6 +117,6 @@ "warning_id": 1 } ], - "gas_remaining": "7999" + "gas_remaining": "7160" } diff --git a/tests/runner/0x111256789012345678901234567890123456abef/init_output.json b/tests/runner/0x111256789012345678901234567890123456abef/init_output.json index 18ff01af0..92514814a 100644 --- a/tests/runner/0x111256789012345678901234567890123456abef/init_output.json +++ b/tests/runner/0x111256789012345678901234567890123456abef/init_output.json @@ -1 +1 @@ -{ "gas_remaining": "7825" } \ No newline at end of file +{ "gas_remaining": "7995" } \ No newline at end of file diff --git a/tests/runner/TestLib2/init_output.json b/tests/runner/TestLib2/init_output.json index b70d1abc6..6888bc514 100644 --- a/tests/runner/TestLib2/init_output.json +++ b/tests/runner/TestLib2/init_output.json @@ -1 +1 @@ -{ "gas_remaining": "7881" } \ No newline at end of file +{ "gas_remaining": "7993" } \ No newline at end of file diff --git a/tests/runner/TestLib2/init_wrong_version_output.json b/tests/runner/TestLib2/init_wrong_version_output.json index 853c4a54a..12bb7bde0 100644 --- a/tests/runner/TestLib2/init_wrong_version_output.json +++ b/tests/runner/TestLib2/init_wrong_version_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7869", + "gas_remaining": "7981", "errors": [ { "error_message": "Scilla version mismatch\n", diff --git a/tests/runner/Testcontracts.ml b/tests/runner/Testcontracts.ml index f6966aedd..21ee52177 100644 --- a/tests/runner/Testcontracts.ml +++ b/tests/runner/Testcontracts.ml @@ -292,6 +292,8 @@ let build_misc_tests env = [ "-init"; tests_dir_file env.tests_dir test_ctxt ("init_bad" ^ snum ^. "json"); + "-gaslimit"; + testsuit_gas_limit; "-libdir"; "src" ^/ "stdlib"; "-jsonerrors"; diff --git a/tests/runner/address_list_as_cparam/init_address_type_ipc_output.json b/tests/runner/address_list_as_cparam/init_address_type_ipc_output.json index 36150661d..8166b3431 100644 --- a/tests/runner/address_list_as_cparam/init_address_type_ipc_output.json +++ b/tests/runner/address_list_as_cparam/init_address_type_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7867", + "gas_remaining": "7999", "errors": [ { "error_message": "Address type not allowed in json file", diff --git a/tests/runner/address_list_as_cparam/init_illegal_type_ipc_output.json b/tests/runner/address_list_as_cparam/init_illegal_type_ipc_output.json index 862792589..8166b3431 100644 --- a/tests/runner/address_list_as_cparam/init_illegal_type_ipc_output.json +++ b/tests/runner/address_list_as_cparam/init_illegal_type_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7877", + "gas_remaining": "7999", "errors": [ { "error_message": "Address type not allowed in json file", diff --git a/tests/runner/address_list_as_cparam/init_illegal_value_ipc_output.json b/tests/runner/address_list_as_cparam/init_illegal_value_ipc_output.json index 0e67ef16c..fe491b69b 100644 --- a/tests/runner/address_list_as_cparam/init_illegal_value_ipc_output.json +++ b/tests/runner/address_list_as_cparam/init_illegal_value_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7880", + "gas_remaining": "7998", "errors": [ { "error_message": diff --git a/tests/runner/address_list_as_cparam/init_ipc_output.json b/tests/runner/address_list_as_cparam/init_ipc_output.json index 81d56ab37..53f1fc8ab 100644 --- a/tests/runner/address_list_as_cparam/init_ipc_output.json +++ b/tests/runner/address_list_as_cparam/init_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "63044", + "gas_remaining": "63988", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/constraint/init_output.json b/tests/runner/constraint/init_output.json index a5477b342..38f14affe 100644 --- a/tests/runner/constraint/init_output.json +++ b/tests/runner/constraint/init_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7914", + "gas_remaining": "7998", "errors": [ { "error_message": "Contract constraint violation.\n", diff --git a/tests/runner/creationtest/init_output.json b/tests/runner/creationtest/init_output.json index 773736c02..486c2c1bc 100644 --- a/tests/runner/creationtest/init_output.json +++ b/tests/runner/creationtest/init_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "63501", + "gas_remaining": "63987", "_accepted": "false", "messages": null, "states": [ diff --git a/tests/runner/crowdfunding/init_output.json b/tests/runner/crowdfunding/init_output.json index 71ff1be59..5ad16369a 100644 --- a/tests/runner/crowdfunding/init_output.json +++ b/tests/runner/crowdfunding/init_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "59111", + "gas_remaining": "63947", "_accepted": "false", "messages": null, "states": [ diff --git a/tests/runner/crowdfunding_proc/init_goal_is_zero_output.json b/tests/runner/crowdfunding_proc/init_goal_is_zero_output.json index 92e441600..4e48a86d4 100644 --- a/tests/runner/crowdfunding_proc/init_goal_is_zero_output.json +++ b/tests/runner/crowdfunding_proc/init_goal_is_zero_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7327", + "gas_remaining": "7992", "errors": [ { "error_message": "Contract constraint violation.\n", diff --git a/tests/runner/map_as_cparam/init_illegal_key_ipc_output.json b/tests/runner/map_as_cparam/init_illegal_key_ipc_output.json index ec074940f..8166b3431 100644 --- a/tests/runner/map_as_cparam/init_illegal_key_ipc_output.json +++ b/tests/runner/map_as_cparam/init_illegal_key_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7860", + "gas_remaining": "7999", "errors": [ { "error_message": "Address type not allowed in json file", diff --git a/tests/runner/map_as_cparam/init_illegal_value_ipc_output.json b/tests/runner/map_as_cparam/init_illegal_value_ipc_output.json index 690111622..8166b3431 100644 --- a/tests/runner/map_as_cparam/init_illegal_value_ipc_output.json +++ b/tests/runner/map_as_cparam/init_illegal_value_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7861", + "gas_remaining": "7999", "errors": [ { "error_message": "Address type not allowed in json file", diff --git a/tests/runner/map_as_cparam/init_ipc_output.json b/tests/runner/map_as_cparam/init_ipc_output.json index 2c2b9a9a7..53f1fc8ab 100644 --- a/tests/runner/map_as_cparam/init_ipc_output.json +++ b/tests/runner/map_as_cparam/init_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "62937", + "gas_remaining": "63988", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/map_as_cparam/init_unassignable_2_ipc_output.json b/tests/runner/map_as_cparam/init_unassignable_2_ipc_output.json index 2c2b9a9a7..53f1fc8ab 100644 --- a/tests/runner/map_as_cparam/init_unassignable_2_ipc_output.json +++ b/tests/runner/map_as_cparam/init_unassignable_2_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "62937", + "gas_remaining": "63988", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/map_as_cparam/init_unassignable_ipc_output.json b/tests/runner/map_as_cparam/init_unassignable_ipc_output.json index 2c2b9a9a7..53f1fc8ab 100644 --- a/tests/runner/map_as_cparam/init_unassignable_ipc_output.json +++ b/tests/runner/map_as_cparam/init_unassignable_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "62937", + "gas_remaining": "63988", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/remote_state_reads/init_address_type_ipc_output.json b/tests/runner/remote_state_reads/init_address_type_ipc_output.json index c4b542ba7..8166b3431 100644 --- a/tests/runner/remote_state_reads/init_address_type_ipc_output.json +++ b/tests/runner/remote_state_reads/init_address_type_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7063", + "gas_remaining": "7999", "errors": [ { "error_message": "Address type not allowed in json file", diff --git a/tests/runner/remote_state_reads/init_assignable_map_types_ipc_output.json b/tests/runner/remote_state_reads/init_assignable_map_types_ipc_output.json index 7bfa4af1c..0b0b244b4 100644 --- a/tests/runner/remote_state_reads/init_assignable_map_types_ipc_output.json +++ b/tests/runner/remote_state_reads/init_assignable_map_types_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "56479", + "gas_remaining": "63960", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/remote_state_reads/init_balance_and_nonce_ipc_output.json b/tests/runner/remote_state_reads/init_balance_and_nonce_ipc_output.json index 7bfa4af1c..0b0b244b4 100644 --- a/tests/runner/remote_state_reads/init_balance_and_nonce_ipc_output.json +++ b/tests/runner/remote_state_reads/init_balance_and_nonce_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "56479", + "gas_remaining": "63960", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/remote_state_reads/init_balance_no_nonce_ipc_output.json b/tests/runner/remote_state_reads/init_balance_no_nonce_ipc_output.json index 7bfa4af1c..0b0b244b4 100644 --- a/tests/runner/remote_state_reads/init_balance_no_nonce_ipc_output.json +++ b/tests/runner/remote_state_reads/init_balance_no_nonce_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "56479", + "gas_remaining": "63960", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/remote_state_reads/init_ipc_output.json b/tests/runner/remote_state_reads/init_ipc_output.json index 7bfa4af1c..0b0b244b4 100644 --- a/tests/runner/remote_state_reads/init_ipc_output.json +++ b/tests/runner/remote_state_reads/init_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "56479", + "gas_remaining": "63960", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/remote_state_reads/init_missing_field_ipc_output.json b/tests/runner/remote_state_reads/init_missing_field_ipc_output.json index 02a82f2c6..2cad1f384 100644 --- a/tests/runner/remote_state_reads/init_missing_field_ipc_output.json +++ b/tests/runner/remote_state_reads/init_missing_field_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7058", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/init_no_address_ipc_output.json b/tests/runner/remote_state_reads/init_no_address_ipc_output.json index 2eded2ee6..268a6abe1 100644 --- a/tests/runner/remote_state_reads/init_no_address_ipc_output.json +++ b/tests/runner/remote_state_reads/init_no_address_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7058", + "gas_remaining": "7993", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/init_nonce_no_balance_ipc_output.json b/tests/runner/remote_state_reads/init_nonce_no_balance_ipc_output.json index 7bfa4af1c..0b0b244b4 100644 --- a/tests/runner/remote_state_reads/init_nonce_no_balance_ipc_output.json +++ b/tests/runner/remote_state_reads/init_nonce_no_balance_ipc_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "56479", + "gas_remaining": "63960", "_accepted": "false", "messages": null, "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/remote_state_reads/init_wrong_address_field_type_ipc_output.json b/tests/runner/remote_state_reads/init_wrong_address_field_type_ipc_output.json index 02a82f2c6..2cad1f384 100644 --- a/tests/runner/remote_state_reads/init_wrong_address_field_type_ipc_output.json +++ b/tests/runner/remote_state_reads/init_wrong_address_field_type_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7058", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/init_wrong_field_type_ipc_output.json b/tests/runner/remote_state_reads/init_wrong_field_type_ipc_output.json index 02a82f2c6..2cad1f384 100644 --- a/tests/runner/remote_state_reads/init_wrong_field_type_ipc_output.json +++ b/tests/runner/remote_state_reads/init_wrong_field_type_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7058", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/init_wrong_map_type_ipc_output.json b/tests/runner/remote_state_reads/init_wrong_map_type_ipc_output.json index 02a82f2c6..2cad1f384 100644 --- a/tests/runner/remote_state_reads/init_wrong_map_type_ipc_output.json +++ b/tests/runner/remote_state_reads/init_wrong_map_type_ipc_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7058", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/wallet_2/init_no_owners_output.json b/tests/runner/wallet_2/init_no_owners_output.json index 6a735f863..129b8bdee 100644 --- a/tests/runner/wallet_2/init_no_owners_output.json +++ b/tests/runner/wallet_2/init_no_owners_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "6082", + "gas_remaining": "7932", "errors": [ { "error_message": "Contract constraint violation.\n", diff --git a/tests/runner/wallet_2/init_not_enough_owners_output.json b/tests/runner/wallet_2/init_not_enough_owners_output.json index d9b8a8f74..12fcf8a9f 100644 --- a/tests/runner/wallet_2/init_not_enough_owners_output.json +++ b/tests/runner/wallet_2/init_not_enough_owners_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "5965", + "gas_remaining": "7927", "errors": [ { "error_message": "Contract constraint violation.\n", diff --git a/tests/runner/wallet_2/init_req_sigs_zero_output.json b/tests/runner/wallet_2/init_req_sigs_zero_output.json index d9b8a8f74..12fcf8a9f 100644 --- a/tests/runner/wallet_2/init_req_sigs_zero_output.json +++ b/tests/runner/wallet_2/init_req_sigs_zero_output.json @@ -1,5 +1,5 @@ { - "gas_remaining": "5965", + "gas_remaining": "7927", "errors": [ { "error_message": "Contract constraint violation.\n", diff --git a/tests/runner/zil-game/init_output.json b/tests/runner/zil-game/init_output.json index 62dde78a6..b139e7c6d 100644 --- a/tests/runner/zil-game/init_output.json +++ b/tests/runner/zil-game/init_output.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "56323", + "gas_remaining": "63936", "_accepted": "false", "messages": null, "states": [ From a6584855a6fdf1f1bc7518958bd941c5d3d837cf Mon Sep 17 00:00:00 2001 From: Vaivaswatha Nagaraj Date: Wed, 28 Jul 2021 15:35:13 +0530 Subject: [PATCH 2/2] Remove all gas charges based on source / JSONs --- src/base/Checker.ml | 44 ++++--------------- src/eval/Runner.ml | 21 +-------- tests/checker/bad/gold/BadPMLib.scillib.gold | 2 +- .../checker/bad/gold/TestLibNS1.scillib.gold | 2 +- .../bad/gold/address_eq_test_bad.scilla.gold | 2 +- .../address_list_traversal_bad.scilla.gold | 2 +- .../address_non_storable_type.scilla.gold | 2 +- .../bad/gold/bad-exception1.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_1.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_2.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_3.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_4.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_7.scilla.gold | 2 +- tests/checker/bad/gold/bad_adt_8.scilla.gold | 2 +- .../bad/gold/bad_adt_lib_3.scilla.gold | 2 +- .../bad/gold/bad_adt_lib_4.scilla.gold | 2 +- .../bad/gold/bad_adt_lib_5.scilla.gold | 2 +- .../bad/gold/bad_adt_lib_6.scilla.gold | 2 +- tests/checker/bad/gold/bad_cast_1.scilla.gold | 2 +- tests/checker/bad/gold/bad_cast_2.scilla.gold | 2 +- tests/checker/bad/gold/bad_cast_3.scilla.gold | 2 +- .../bad/gold/bad_comment_1.scilla.gold | 2 +- .../bad/gold/bad_comment_2.scilla.gold | 2 +- .../checker/bad/gold/bad_fields1.scilla.gold | 2 +- .../checker/bad/gold/bad_fields2.scilla.gold | 2 +- .../checker/bad/gold/bad_fields3.scilla.gold | 2 +- .../checker/bad/gold/bad_fields4.scilla.gold | 2 +- .../bad/gold/bad_lib_pm_import.scilla.gold | 2 +- .../checker/bad/gold/bad_lib_type.scilla.gold | 2 +- .../bad/gold/bad_lib_type2.scilla.gold | 2 +- .../bad/gold/bad_lib_type3.scilla.gold | 2 +- .../bad/gold/bad_map_key_1.scilla.gold | 2 +- .../bad/gold/bad_map_key_5.scilla.gold | 2 +- .../checker/bad/gold/bad_message1.scilla.gold | 2 +- .../checker/bad/gold/bad_message2.scilla.gold | 2 +- tests/checker/bad/gold/bad_param.scilla.gold | 2 +- .../bad/gold/bad_transition_param.scilla.gold | 2 +- .../bad/gold/balance_field.scilla.gold | 2 +- .../bad/gold/builtin_type_args.scilla.gold | 2 +- .../constraint_field_not_in_scope.scilla.gold | 2 +- ...constraint_locals_not_in_scope.scilla.gold | 2 +- .../gold/constraint_type_illegal.scilla.gold | 2 +- tests/checker/bad/gold/event_bad1.scilla.gold | 2 +- tests/checker/bad/gold/event_bad2.scilla.gold | 2 +- .../forward_definition_procedure.scilla.gold | 2 +- .../gold/global_scope_procedures.scilla.gold | 2 +- .../bad/gold/homonymous_vars.scilla.gold | 2 +- .../bad/gold/homonymous_vars2.scilla.gold | 2 +- .../bad/gold/homonymous_vars3.scilla.gold | 2 +- .../gold/import-test-lib-bad_1.scilla.gold | 2 +- .../gold/import-test-lib-bad_2.scilla.gold | 2 +- .../gold/import-test-lib-bad_3.scilla.gold | 2 +- .../checker/bad/gold/inplace-map.scilla.gold | 2 +- tests/checker/bad/gold/lib_bad1.scilla.gold | 2 +- tests/checker/bad/gold/libdup1.scilla.gold | 2 +- tests/checker/bad/gold/libdup2.scilla.gold | 2 +- .../checker/bad/gold/libindirect.scilla.gold | 2 +- .../checker/bad/gold/listiter-bad.scilla.gold | 2 +- .../bad/gold/map_value_function.scilla.gold | 2 +- tests/checker/bad/gold/mappair.scilla.gold | 2 +- tests/checker/bad/gold/mappair2.scilla.gold | 2 +- .../bad/gold/match-in-transition.scilla.gold | 2 +- .../bad/gold/message_field.scilla.gold | 2 +- .../bad/gold/message_field2.scilla.gold | 2 +- .../bad/gold/message_field3.scilla.gold | 2 +- .../mutually_recursive_procedure.scilla.gold | 2 +- .../checker/bad/gold/name_clashes.scilla.gold | 2 +- tests/checker/bad/gold/namespace1.scilla.gold | 2 +- .../bad/gold/procedure_bad_args.scilla.gold | 2 +- .../bad/gold/procedure_bad_type.scilla.gold | 2 +- .../bad/gold/procedure_env.scilla.gold | 2 +- .../bad/gold/procedure_map_arg.scilla.gold | 2 +- .../bad/gold/recursive_procedure.scilla.gold | 2 +- .../bad/gold/remote_read_bad_1.scilla.gold | 2 +- .../bad/gold/remote_read_bad_2.scilla.gold | 2 +- .../bad/gold/remote_read_bad_3.scilla.gold | 2 +- .../gold/remote_read_non_address.scilla.gold | 2 +- .../bad/gold/remote_read_spid.scilla.gold | 2 +- .../checker/bad/gold/send_event1.scilla.gold | 2 +- .../checker/bad/gold/send_event2.scilla.gold | 2 +- tests/checker/bad/gold/unbound.scilla.gold | 2 +- .../bad/gold/unserializable_param.scilla.gold | 2 +- .../bad/gold/unstorable_adt.scilla.gold | 2 +- tests/checker/bad/gold/zil_mod.scilla.gold | 2 +- .../gold/InstantiatedListUtils.scillib.gold | 2 +- .../checker/good/gold/TestLibNS1.scillib.gold | 2 +- .../checker/good/gold/TestLibNS2.scillib.gold | 2 +- .../checker/good/gold/TestLibNS3.scillib.gold | 2 +- .../checker/good/gold/TestLibNS4.scillib.gold | 2 +- tests/checker/good/gold/UintParam.scilla.gold | 2 +- .../good/gold/address_eq_test.scilla.gold | 2 +- .../gold/address_list_as_cparam.scilla.gold | 2 +- .../gold/address_list_traversal.scilla.gold | 2 +- tests/checker/good/gold/adt_test.scilla.gold | 2 +- tests/checker/good/gold/auction.scilla.gold | 2 +- .../good/gold/auction.scilla.typeinfo.gold | 2 +- .../backward_definition_procedure.scilla.gold | 2 +- .../good/gold/blockchain_import.scilla.gold | 2 +- tests/checker/good/gold/blowup_1.scilla.gold | 2 +- tests/checker/good/gold/blowup_2.scilla.gold | 2 +- tests/checker/good/gold/bookstore.scilla.gold | 2 +- .../good/gold/builtin_type_args.scilla.gold | 2 +- .../good/gold/cashflow_test.scilla.gold | 2 +- tests/checker/good/gold/cfinvoke.scilla.gold | 2 +- .../gold/chain-call-balance-1.scilla.gold | 2 +- .../gold/chain-call-balance-2.scilla.gold | 2 +- .../gold/chain-call-balance-3.scilla.gold | 2 +- .../checker/good/gold/constraint.scilla.gold | 2 +- .../good/gold/constraint_scope.scilla.gold | 2 +- .../good/gold/crowdfunding.scilla.gold | 2 +- .../good/gold/crowdfunding_proc.scilla.gold | 2 +- .../good/gold/dead_code_test1.scilla.gold | 2 +- .../good/gold/dead_code_test2.scilla.gold | 2 +- .../good/gold/dead_code_test3.scilla.gold | 2 +- .../good/gold/dead_code_test4.scilla.gold | 2 +- .../good/gold/earmarked-coin.scilla.gold | 2 +- tests/checker/good/gold/ecdsa.scilla.gold | 2 +- tests/checker/good/gold/empty.scilla.gold | 2 +- .../gold/event_reordered_fields.scilla.gold | 2 +- .../good/gold/fungible-token.scilla.gold | 2 +- .../checker/good/gold/helloWorld.scilla.gold | 2 +- .../good/gold/import-test-lib.scilla.gold | 2 +- .../good/gold/import-test-lib2.scilla.gold | 2 +- .../good/gold/import-test-lib3.scilla.gold | 2 +- .../checker/good/gold/inplace-map.scilla.gold | 2 +- .../checker/good/gold/lib_typing.scilla.gold | 2 +- .../checker/good/gold/lib_typing2.scilla.gold | 2 +- tests/checker/good/gold/libchain1.scilla.gold | 2 +- tests/checker/good/gold/libchain2.scilla.gold | 2 +- .../checker/good/gold/libdiamond.scilla.gold | 2 +- .../checker/good/gold/libdiamond2.scilla.gold | 2 +- tests/checker/good/gold/listiter.scilla.gold | 2 +- ...ap-inplace-update-with-_sender.scilla.gold | 2 +- .../good/gold/map_as_cparam.scilla.gold | 2 +- .../good/gold/map_corners_test.scilla.gold | 2 +- .../map_corners_test.scilla.typeinfo.gold | 2 +- .../good/gold/map_key_test.scilla.gold | 2 +- .../good/gold/map_no_inplace_warn.scilla.gold | 2 +- tests/checker/good/gold/mappair.scilla.gold | 2 +- .../good/gold/missing-accepts.scilla.gold | 2 +- .../good/gold/multiple-accepts.scilla.gold | 2 +- .../good/gold/multiple-msgs.scilla.gold | 2 +- .../checker/good/gold/namespace1.scilla.gold | 2 +- .../checker/good/gold/namespace2.scilla.gold | 2 +- .../checker/good/gold/namespace3.scilla.gold | 2 +- .../good/gold/nested-comments.scilla.gold | 2 +- .../good/gold/nonfungible-token.scilla.gold | 2 +- .../checker/good/gold/one-accept.scilla.gold | 2 +- tests/checker/good/gold/one-msg.scilla.gold | 2 +- tests/checker/good/gold/one-msg1.scilla.gold | 2 +- tests/checker/good/gold/one-msg2.scilla.gold | 2 +- tests/checker/good/gold/one-msg3.scilla.gold | 2 +- .../gold/one-transition-accepts.scilla.gold | 2 +- .../one-transition-might-accept.scilla.gold | 2 +- tests/checker/good/gold/ping.scilla.gold | 2 +- .../good/gold/polymorphic_address.scilla.gold | 2 +- tests/checker/good/gold/pong.scilla.gold | 2 +- .../good/gold/remote_state_reads.scilla.gold | 2 +- .../gold/remote_state_reads_2.scilla.gold | 2 +- tests/checker/good/gold/schnorr.scilla.gold | 2 +- .../good/gold/shadow_import.scilla.gold | 2 +- .../checker/good/gold/shadowwarn1.scilla.gold | 2 +- .../checker/good/gold/shadowwarn2.scilla.gold | 2 +- .../checker/good/gold/shadowwarn3.scilla.gold | 2 +- tests/checker/good/gold/shogi.scilla.gold | 2 +- .../checker/good/gold/shogi_proc.scilla.gold | 2 +- .../gold/simple-dex-remote-reads.scilla.gold | 2 +- .../gold/simple-dex-shadowwarn.scilla.gold | 2 +- .../checker/good/gold/simple-dex.scilla.gold | 2 +- .../checker/good/gold/type_casts.scilla.gold | 2 +- tests/checker/good/gold/ud-proxy.scilla.gold | 2 +- .../checker/good/gold/ud-registry.scilla.gold | 2 +- tests/checker/good/gold/wallet.scilla.gold | 2 +- tests/checker/good/gold/wallet_2.scilla.gold | 2 +- tests/checker/good/gold/zil-game.scilla.gold | 2 +- tests/runner/Polynetwork/output_1.json | 2 +- tests/runner/Polynetwork/output_2.json | 2 +- tests/runner/Polynetwork/output_25.json | 2 +- tests/runner/Polynetwork/output_26.json | 2 +- tests/runner/Polynetwork/output_27.json | 2 +- tests/runner/Polynetwork/output_28.json | 2 +- tests/runner/Polynetwork/output_3.json | 2 +- tests/runner/Polynetwork/output_4.json | 2 +- tests/runner/UintParam/output_1.json | 2 +- tests/runner/UintParam/output_2.json | 2 +- tests/runner/UintParam/output_3.json | 2 +- tests/runner/addfunds/output_1.json | 2 +- tests/runner/addfunds_proxy/output_1.json | 2 +- tests/runner/addfunds_proxy/output_2.json | 2 +- tests/runner/address_eq_test/output_1.json | 2 +- tests/runner/address_eq_test/output_10.json | 2 +- tests/runner/address_eq_test/output_11.json | 2 +- tests/runner/address_eq_test/output_2.json | 2 +- tests/runner/address_eq_test/output_3.json | 2 +- tests/runner/address_eq_test/output_4.json | 2 +- tests/runner/address_eq_test/output_5.json | 2 +- tests/runner/address_eq_test/output_6.json | 2 +- tests/runner/address_eq_test/output_7.json | 2 +- tests/runner/address_eq_test/output_8.json | 2 +- tests/runner/address_eq_test/output_9.json | 2 +- .../address_list_traversal/output_1.json | 2 +- .../address_list_traversal/output_2.json | 2 +- .../address_list_traversal/output_3.json | 2 +- tests/runner/auction/output_1.json | 2 +- tests/runner/auction/output_2.json | 2 +- tests/runner/auction/output_3.json | 2 +- tests/runner/auction/output_4.json | 2 +- tests/runner/auction/output_5.json | 2 +- tests/runner/auction/output_6.json | 2 +- tests/runner/auction/output_7.json | 2 +- tests/runner/auction/output_8.json | 2 +- tests/runner/bookstore/output_1.json | 2 +- tests/runner/bookstore/output_10.json | 2 +- tests/runner/bookstore/output_11.json | 2 +- tests/runner/bookstore/output_12.json | 2 +- tests/runner/bookstore/output_2.json | 2 +- tests/runner/bookstore/output_3.json | 2 +- tests/runner/bookstore/output_4.json | 2 +- tests/runner/bookstore/output_5.json | 2 +- tests/runner/bookstore/output_6.json | 2 +- tests/runner/bookstore/output_7.json | 2 +- tests/runner/bookstore/output_8.json | 2 +- tests/runner/bookstore/output_9.json | 2 +- tests/runner/cfinvoke/output_1.json | 2 +- tests/runner/cfinvoke/output_2.json | 2 +- tests/runner/cfinvoke/output_3.json | 2 +- tests/runner/cfinvoke/output_4.json | 2 +- .../runner/chain-call-balance-1/output_1.json | 2 +- .../runner/chain-call-balance-2/output_1.json | 2 +- .../runner/chain-call-balance-3/output_1.json | 2 +- tests/runner/crowdfunding/output_1.json | 2 +- tests/runner/crowdfunding/output_2.json | 2 +- tests/runner/crowdfunding/output_3.json | 2 +- tests/runner/crowdfunding/output_4.json | 2 +- tests/runner/crowdfunding/output_5.json | 2 +- tests/runner/crowdfunding/output_6.json | 2 +- tests/runner/crowdfunding_proc/output_1.json | 2 +- tests/runner/crowdfunding_proc/output_2.json | 2 +- tests/runner/crowdfunding_proc/output_3.json | 2 +- tests/runner/crowdfunding_proc/output_4.json | 2 +- tests/runner/crowdfunding_proc/output_5.json | 2 +- tests/runner/crowdfunding_proc/output_6.json | 2 +- tests/runner/earmarked-coin/output_1.json | 2 +- tests/runner/earmarked-coin/output_2.json | 2 +- tests/runner/earmarked-coin/output_3.json | 2 +- tests/runner/earmarked-coin/output_4.json | 2 +- tests/runner/earmarked-coin/output_5.json | 2 +- tests/runner/earmarked-coin/output_6.json | 2 +- tests/runner/ecdsa/output_1.json | 2 +- tests/runner/ecdsa/output_2.json | 2 +- tests/runner/ecdsa/output_3.json | 2 +- tests/runner/ecdsa/output_4.json | 2 +- tests/runner/empty/output_1.json | 2 +- tests/runner/exception-example/output_1.json | 2 +- tests/runner/exception-example/output_2.json | 2 +- tests/runner/fungible-token/output_0.json | 2 +- tests/runner/fungible-token/output_1.json | 2 +- tests/runner/fungible-token/output_2.json | 2 +- tests/runner/fungible-token/output_3.json | 2 +- tests/runner/fungible-token/output_4.json | 2 +- tests/runner/fungible-token/output_5.json | 2 +- tests/runner/fungible-token/output_6.json | 2 +- tests/runner/fungible-token/output_7.json | 2 +- tests/runner/fungible-token/output_8.json | 2 +- tests/runner/helloWorld/output_1.json | 2 +- tests/runner/helloWorld/output_10.json | 2 +- tests/runner/helloWorld/output_11.json | 2 +- tests/runner/helloWorld/output_2.json | 2 +- tests/runner/helloWorld/output_3.json | 2 +- tests/runner/helloWorld/output_4.json | 2 +- tests/runner/helloWorld/output_5.json | 2 +- tests/runner/helloWorld/output_6.json | 2 +- tests/runner/helloWorld/output_7.json | 2 +- tests/runner/helloWorld/output_8.json | 2 +- tests/runner/helloWorld/output_9.json | 2 +- tests/runner/import-test-lib/output_1.json | 2 +- tests/runner/import-test-lib/output_2.json | 2 +- tests/runner/import-test-lib/output_3.json | 2 +- tests/runner/import-test-lib2/output_1.json | 2 +- tests/runner/import-test-lib3/output_1.json | 2 +- tests/runner/inplace-map/output_1.json | 2 +- tests/runner/inplace-map/output_10.json | 2 +- tests/runner/inplace-map/output_11.json | 2 +- tests/runner/inplace-map/output_12.json | 2 +- tests/runner/inplace-map/output_13.json | 2 +- tests/runner/inplace-map/output_14.json | 2 +- tests/runner/inplace-map/output_2.json | 2 +- tests/runner/inplace-map/output_3.json | 2 +- tests/runner/inplace-map/output_4.json | 2 +- tests/runner/inplace-map/output_5.json | 2 +- tests/runner/inplace-map/output_6.json | 2 +- tests/runner/inplace-map/output_7.json | 2 +- tests/runner/inplace-map/output_8.json | 2 +- tests/runner/inplace-map/output_9.json | 2 +- tests/runner/listiter/output_1.json | 2 +- tests/runner/loopy-tree-call/output_1.json | 2 +- tests/runner/map_corners_test/output_1.json | 2 +- tests/runner/map_corners_test/output_10.json | 2 +- tests/runner/map_corners_test/output_11.json | 2 +- tests/runner/map_corners_test/output_111.json | 2 +- tests/runner/map_corners_test/output_112.json | 2 +- tests/runner/map_corners_test/output_113.json | 2 +- tests/runner/map_corners_test/output_12.json | 2 +- tests/runner/map_corners_test/output_13.json | 2 +- tests/runner/map_corners_test/output_14.json | 2 +- tests/runner/map_corners_test/output_15.json | 2 +- tests/runner/map_corners_test/output_16.json | 2 +- tests/runner/map_corners_test/output_17.json | 2 +- tests/runner/map_corners_test/output_18.json | 2 +- tests/runner/map_corners_test/output_19.json | 2 +- tests/runner/map_corners_test/output_2.json | 2 +- tests/runner/map_corners_test/output_20.json | 2 +- tests/runner/map_corners_test/output_21.json | 2 +- tests/runner/map_corners_test/output_22.json | 2 +- tests/runner/map_corners_test/output_23.json | 2 +- tests/runner/map_corners_test/output_24.json | 2 +- tests/runner/map_corners_test/output_3.json | 2 +- tests/runner/map_corners_test/output_4.json | 2 +- tests/runner/map_corners_test/output_5.json | 2 +- tests/runner/map_corners_test/output_51.json | 2 +- tests/runner/map_corners_test/output_52.json | 2 +- tests/runner/map_corners_test/output_53.json | 2 +- tests/runner/map_corners_test/output_6.json | 2 +- tests/runner/map_corners_test/output_7.json | 2 +- tests/runner/map_corners_test/output_8.json | 2 +- tests/runner/map_corners_test/output_9.json | 2 +- .../map_corners_test_combined/output_1.json | 2 +- tests/runner/map_key_test/output_1.json | 2 +- tests/runner/mappair/output_1.json | 2 +- tests/runner/mappair/output_12.json | 2 +- tests/runner/mappair/output_13.json | 2 +- tests/runner/mappair/output_14.json | 2 +- tests/runner/mappair/output_2.json | 2 +- tests/runner/mappair/output_3.json | 2 +- tests/runner/mappair/output_4.json | 2 +- tests/runner/mappair/output_5.json | 2 +- tests/runner/mappair/output_6.json | 2 +- tests/runner/mappair/output_7.json | 2 +- tests/runner/mappair/output_8.json | 2 +- tests/runner/mappair/output_9.json | 2 +- tests/runner/multiple-msgs/output_1.json | 2 +- tests/runner/nonfungible-token/output_1.json | 2 +- tests/runner/nonfungible-token/output_10.json | 2 +- tests/runner/nonfungible-token/output_11.json | 2 +- tests/runner/nonfungible-token/output_12.json | 2 +- tests/runner/nonfungible-token/output_2.json | 2 +- tests/runner/nonfungible-token/output_21.json | 2 +- tests/runner/nonfungible-token/output_22.json | 2 +- tests/runner/nonfungible-token/output_23.json | 2 +- tests/runner/nonfungible-token/output_24.json | 2 +- tests/runner/nonfungible-token/output_25.json | 2 +- tests/runner/nonfungible-token/output_26.json | 2 +- tests/runner/nonfungible-token/output_27.json | 2 +- tests/runner/nonfungible-token/output_3.json | 2 +- tests/runner/nonfungible-token/output_4.json | 2 +- tests/runner/nonfungible-token/output_5.json | 2 +- tests/runner/nonfungible-token/output_6.json | 2 +- tests/runner/nonfungible-token/output_7.json | 2 +- tests/runner/nonfungible-token/output_8.json | 2 +- tests/runner/nonfungible-token/output_9.json | 2 +- tests/runner/one-msg/output_1.json | 2 +- tests/runner/one-msg1/output_1.json | 2 +- tests/runner/ping/output_0.json | 2 +- tests/runner/ping/output_1.json | 2 +- tests/runner/ping/output_2.json | 2 +- tests/runner/ping/output_3.json | 2 +- tests/runner/pong/output_0.json | 2 +- tests/runner/pong/output_1.json | 2 +- tests/runner/pong/output_2.json | 2 +- tests/runner/pong/output_3.json | 2 +- tests/runner/remote_state_reads/output_1.json | 2 +- .../runner/remote_state_reads/output_10.json | 2 +- .../runner/remote_state_reads/output_101.json | 2 +- .../runner/remote_state_reads/output_102.json | 2 +- .../runner/remote_state_reads/output_103.json | 2 +- .../runner/remote_state_reads/output_104.json | 2 +- .../runner/remote_state_reads/output_105.json | 2 +- .../runner/remote_state_reads/output_106.json | 2 +- .../runner/remote_state_reads/output_107.json | 2 +- .../runner/remote_state_reads/output_108.json | 2 +- .../runner/remote_state_reads/output_109.json | 2 +- .../runner/remote_state_reads/output_11.json | 2 +- .../runner/remote_state_reads/output_110.json | 2 +- .../runner/remote_state_reads/output_111.json | 2 +- .../runner/remote_state_reads/output_112.json | 2 +- .../runner/remote_state_reads/output_113.json | 2 +- .../runner/remote_state_reads/output_114.json | 2 +- .../runner/remote_state_reads/output_115.json | 2 +- .../runner/remote_state_reads/output_116.json | 2 +- .../runner/remote_state_reads/output_117.json | 2 +- .../runner/remote_state_reads/output_118.json | 2 +- .../runner/remote_state_reads/output_119.json | 2 +- .../runner/remote_state_reads/output_120.json | 2 +- .../runner/remote_state_reads/output_121.json | 2 +- .../runner/remote_state_reads/output_122.json | 2 +- .../runner/remote_state_reads/output_123.json | 2 +- .../runner/remote_state_reads/output_124.json | 2 +- .../runner/remote_state_reads/output_125.json | 2 +- .../runner/remote_state_reads/output_126.json | 2 +- .../runner/remote_state_reads/output_127.json | 2 +- .../runner/remote_state_reads/output_128.json | 2 +- .../runner/remote_state_reads/output_129.json | 2 +- .../runner/remote_state_reads/output_130.json | 2 +- .../runner/remote_state_reads/output_131.json | 2 +- tests/runner/remote_state_reads/output_2.json | 2 +- tests/runner/remote_state_reads/output_3.json | 2 +- tests/runner/remote_state_reads/output_4.json | 2 +- tests/runner/remote_state_reads/output_5.json | 2 +- tests/runner/remote_state_reads/output_6.json | 2 +- tests/runner/remote_state_reads/output_7.json | 2 +- tests/runner/remote_state_reads/output_8.json | 2 +- tests/runner/remote_state_reads/output_9.json | 2 +- .../runner/remote_state_reads_2/output_1.json | 2 +- .../runner/remote_state_reads_2/output_2.json | 2 +- .../runner/remote_state_reads_2/output_3.json | 2 +- .../runner/remote_state_reads_2/output_4.json | 2 +- .../runner/remote_state_reads_2/output_5.json | 2 +- tests/runner/salarybot/output_0.json | 2 +- tests/runner/salarybot/output_1.json | 2 +- tests/runner/salarybot/output_2.json | 2 +- tests/runner/salarybot/output_3.json | 2 +- tests/runner/salarybot/output_4.json | 2 +- tests/runner/salarybot/output_5.json | 2 +- tests/runner/schnorr/output_1.json | 2 +- tests/runner/schnorr/output_2.json | 2 +- tests/runner/schnorr/output_3.json | 2 +- tests/runner/shadow_import/output_1.json | 2 +- tests/runner/shogi/output_1.json | 2 +- tests/runner/shogi/output_2.json | 2 +- tests/runner/shogi/output_3.json | 2 +- tests/runner/shogi/output_4.json | 2 +- tests/runner/shogi/output_5.json | 2 +- tests/runner/shogi/output_6.json | 2 +- tests/runner/shogi/output_7.json | 2 +- tests/runner/shogi_proc/output_1.json | 2 +- tests/runner/shogi_proc/output_2.json | 2 +- tests/runner/shogi_proc/output_3.json | 2 +- tests/runner/shogi_proc/output_4.json | 2 +- tests/runner/simple-dex/output_1.json | 2 +- tests/runner/simple-dex/output_2.json | 2 +- tests/runner/simple-dex/output_3.json | 2 +- tests/runner/simple-dex/output_4.json | 2 +- tests/runner/simple-dex/output_5.json | 2 +- tests/runner/simple-dex/output_6.json | 2 +- tests/runner/simple-dex/output_7.json | 2 +- tests/runner/simple-dex/output_8.json | 2 +- tests/runner/type_casts/output_1.json | 2 +- tests/runner/type_casts/output_10.json | 2 +- tests/runner/type_casts/output_11.json | 2 +- tests/runner/type_casts/output_12.json | 2 +- tests/runner/type_casts/output_13.json | 2 +- tests/runner/type_casts/output_14.json | 2 +- tests/runner/type_casts/output_15.json | 2 +- tests/runner/type_casts/output_16.json | 2 +- tests/runner/type_casts/output_17.json | 2 +- tests/runner/type_casts/output_18.json | 2 +- tests/runner/type_casts/output_19.json | 2 +- tests/runner/type_casts/output_2.json | 2 +- tests/runner/type_casts/output_20.json | 2 +- tests/runner/type_casts/output_21.json | 2 +- tests/runner/type_casts/output_22.json | 2 +- tests/runner/type_casts/output_23.json | 2 +- tests/runner/type_casts/output_24.json | 2 +- tests/runner/type_casts/output_25.json | 2 +- tests/runner/type_casts/output_26.json | 2 +- tests/runner/type_casts/output_27.json | 2 +- tests/runner/type_casts/output_28.json | 2 +- tests/runner/type_casts/output_29.json | 2 +- tests/runner/type_casts/output_3.json | 2 +- tests/runner/type_casts/output_30.json | 2 +- tests/runner/type_casts/output_31.json | 2 +- tests/runner/type_casts/output_32.json | 2 +- tests/runner/type_casts/output_33.json | 2 +- tests/runner/type_casts/output_34.json | 2 +- tests/runner/type_casts/output_35.json | 2 +- tests/runner/type_casts/output_36.json | 2 +- tests/runner/type_casts/output_37.json | 2 +- tests/runner/type_casts/output_4.json | 2 +- tests/runner/type_casts/output_5.json | 2 +- tests/runner/type_casts/output_6.json | 2 +- tests/runner/type_casts/output_7.json | 2 +- tests/runner/type_casts/output_8.json | 2 +- tests/runner/type_casts/output_9.json | 2 +- tests/runner/wallet/output_1.json | 2 +- tests/runner/wallet/output_10.json | 2 +- tests/runner/wallet/output_11.json | 2 +- tests/runner/wallet/output_2.json | 2 +- tests/runner/wallet/output_3.json | 2 +- tests/runner/wallet/output_4.json | 2 +- tests/runner/wallet/output_5.json | 2 +- tests/runner/wallet/output_6.json | 2 +- tests/runner/wallet/output_7.json | 2 +- tests/runner/wallet/output_8.json | 2 +- tests/runner/wallet/output_9.json | 2 +- tests/runner/wallet_2/output_1.json | 2 +- tests/runner/wallet_2/output_11.json | 2 +- tests/runner/wallet_2/output_12.json | 2 +- tests/runner/wallet_2/output_14.json | 2 +- tests/runner/wallet_2/output_15.json | 2 +- tests/runner/wallet_2/output_16.json | 2 +- tests/runner/wallet_2/output_17.json | 2 +- tests/runner/wallet_2/output_18.json | 2 +- tests/runner/wallet_2/output_19.json | 2 +- tests/runner/wallet_2/output_2.json | 2 +- tests/runner/wallet_2/output_20.json | 2 +- tests/runner/wallet_2/output_21.json | 2 +- tests/runner/wallet_2/output_22.json | 2 +- tests/runner/wallet_2/output_23.json | 2 +- tests/runner/wallet_2/output_24.json | 2 +- tests/runner/wallet_2/output_25.json | 2 +- tests/runner/wallet_2/output_26.json | 2 +- tests/runner/wallet_2/output_27.json | 2 +- tests/runner/wallet_2/output_28.json | 2 +- tests/runner/wallet_2/output_29.json | 2 +- tests/runner/wallet_2/output_3.json | 2 +- tests/runner/wallet_2/output_30.json | 2 +- tests/runner/wallet_2/output_31.json | 2 +- tests/runner/wallet_2/output_32.json | 2 +- tests/runner/wallet_2/output_33.json | 2 +- tests/runner/wallet_2/output_34.json | 2 +- tests/runner/wallet_2/output_35.json | 2 +- tests/runner/wallet_2/output_36.json | 2 +- tests/runner/wallet_2/output_37.json | 2 +- tests/runner/wallet_2/output_38.json | 2 +- tests/runner/wallet_2/output_39.json | 2 +- tests/runner/wallet_2/output_4.json | 2 +- tests/runner/wallet_2/output_40.json | 2 +- tests/runner/wallet_2/output_42.json | 2 +- tests/runner/wallet_2/output_5.json | 2 +- tests/runner/wallet_2/output_6.json | 2 +- tests/runner/wallet_2/output_7.json | 2 +- tests/runner/wallet_2/output_8.json | 2 +- tests/runner/zil-game/output_1.json | 2 +- tests/runner/zil-game/output_2.json | 2 +- tests/runner/zil-game/output_3.json | 2 +- tests/runner/zil-game/output_4.json | 2 +- tests/runner/zil-game/output_5.json | 2 +- tests/runner/zil-game/output_6.json | 2 +- tests/runner/zil-game/output_7.json | 2 +- tests/runner/zil-game/output_8.json | 2 +- tests/runner/zil-game/output_9.json | 2 +- 541 files changed, 548 insertions(+), 595 deletions(-) diff --git a/src/base/Checker.ml b/src/base/Checker.ml index 371e91ba7..7bd6883f7 100644 --- a/src/base/Checker.ml +++ b/src/base/Checker.ml @@ -232,22 +232,8 @@ let wrap_error_with_gas gas res = let check_lmodule cli = let r = let initial_gas = Uint64.mul Gas.scale_factor cli.gas_limit in - let remaining_gas = - let cost' = - UnixLabels.( - (stat cli.input_file).st_size - + match cli.init_file with Some f -> (stat f).st_size | None -> 0) - in - let cost = Uint64.of_int cost' in - if Uint64.compare initial_gas cost < 0 then - fatal_error_gas_scale Gas.scale_factor - (mk_error0 - (sprintf "Ran out of gas when parsing contract/init files.\n")) - Uint64.zero - else Uint64.sub initial_gas cost - in let%bind (lmod : ParserSyntax.lmodule) = - wrap_error_with_gas remaining_gas + wrap_error_with_gas initial_gas @@ check_parsing cli.input_file Parser.Incremental.lmodule in let this_address_opt, init_address_map = @@ -260,15 +246,15 @@ let check_lmodule cli = in let elibs = import_libs lmod.elibs init_address_map in let%bind dis_lmod = - wrap_error_with_gas remaining_gas + wrap_error_with_gas initial_gas @@ disambiguate_lmod lmod elibs init_address_map this_address in let%bind recursion_lmod, recursion_rec_principles, recursion_elibs = - wrap_error_with_gas remaining_gas @@ check_recursion_lmod dis_lmod elibs + wrap_error_with_gas initial_gas @@ check_recursion_lmod dis_lmod elibs in let%bind (typed_lmod, typed_rlibs, typed_elibs), remaining_gas = check_typing_lmod recursion_lmod recursion_rec_principles recursion_elibs - remaining_gas + initial_gas in let%bind () = Result.ignore_m @@ -316,22 +302,8 @@ let check_lmodule cli = let check_cmodule cli = let r = let initial_gas = Uint64.mul Gas.scale_factor cli.gas_limit in - let remaining_gas = - let cost' = - UnixLabels.( - (stat cli.input_file).st_size - + match cli.init_file with Some f -> (stat f).st_size | None -> 0) - in - let cost = Uint64.of_int cost' in - if Uint64.compare initial_gas cost < 0 then - fatal_error_gas_scale Gas.scale_factor - (mk_error0 - (sprintf "Ran out of gas when parsing contract/init files.\n")) - Uint64.zero - else Uint64.sub initial_gas cost - in let%bind (cmod : ParserSyntax.cmodule) = - wrap_error_with_gas remaining_gas + wrap_error_with_gas initial_gas @@ check_parsing cli.input_file Parser.Incremental.cmodule in (* Import whatever libs we want. *) @@ -345,15 +317,15 @@ let check_cmodule cli = in let elibs = import_libs cmod.elibs init_address_map in let%bind dis_cmod = - wrap_error_with_gas remaining_gas + wrap_error_with_gas initial_gas @@ disambiguate_cmod cmod elibs init_address_map this_address in let%bind recursion_cmod, recursion_rec_principles, recursion_elibs = - wrap_error_with_gas remaining_gas @@ check_recursion dis_cmod elibs + wrap_error_with_gas initial_gas @@ check_recursion dis_cmod elibs in let%bind (typed_cmod, tenv, typed_elibs, typed_rlibs), remaining_gas = check_typing recursion_cmod recursion_rec_principles recursion_elibs - remaining_gas + initial_gas in let%bind pm_checked_cmod, _pm_checked_rlibs, _pm_checked_elibs = wrap_error_with_gas remaining_gas diff --git a/src/eval/Runner.ml b/src/eval/Runner.ml index 935956d0b..275b7e75a 100644 --- a/src/eval/Runner.ml +++ b/src/eval/Runner.ml @@ -368,26 +368,7 @@ let run_with_args args = FilePath.check_extension args.input GlobalConfig.StdlibTracker.file_extn_library in - let initial_gas_limit = Uint64.mul args.gas_limit Gas.scale_factor in - let gas_remaining = - (* Subtract gas based message size. *) - if is_deployment then initial_gas_limit - else - let cost = Uint64.of_int (UnixLabels.stat args.input_message).st_size in - (* libraries can only be deployed, not "run". *) - if is_library then - fatal_error_gas_scale Gas.scale_factor - (mk_error0 - (sprintf - "Cannot run a library contract. They can only be deployed\n")) - Uint64.zero - else if Uint64.compare initial_gas_limit cost < 0 then - fatal_error_gas_scale Gas.scale_factor - (mk_error0 (sprintf "Ran out of gas when parsing message.\n")) - Uint64.zero - else Uint64.sub initial_gas_limit cost - in - + let gas_remaining = Uint64.mul args.gas_limit Gas.scale_factor in if is_library then deploy_library args gas_remaining else match FEParser.parse_cmodule args.input with diff --git a/tests/checker/bad/gold/BadPMLib.scillib.gold b/tests/checker/bad/gold/BadPMLib.scillib.gold index db3d1cf4a..5236f0c20 100644 --- a/tests/checker/bad/gold/BadPMLib.scillib.gold +++ b/tests/checker/bad/gold/BadPMLib.scillib.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7985", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/TestLibNS1.scillib.gold b/tests/checker/bad/gold/TestLibNS1.scillib.gold index f0dbccafb..6bc10892c 100644 --- a/tests/checker/bad/gold/TestLibNS1.scillib.gold +++ b/tests/checker/bad/gold/TestLibNS1.scillib.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7976", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/address_eq_test_bad.scilla.gold b/tests/checker/bad/gold/address_eq_test_bad.scilla.gold index 9325af932..3fffb2814 100644 --- a/tests/checker/bad/gold/address_eq_test_bad.scilla.gold +++ b/tests/checker/bad/gold/address_eq_test_bad.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7869", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/address_list_traversal_bad.scilla.gold b/tests/checker/bad/gold/address_list_traversal_bad.scilla.gold index 7719eb01d..7eeadf96d 100644 --- a/tests/checker/bad/gold/address_list_traversal_bad.scilla.gold +++ b/tests/checker/bad/gold/address_list_traversal_bad.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7739", + "gas_remaining": "7914", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/address_non_storable_type.scilla.gold b/tests/checker/bad/gold/address_non_storable_type.scilla.gold index a72269072..8f098ce13 100644 --- a/tests/checker/bad/gold/address_non_storable_type.scilla.gold +++ b/tests/checker/bad/gold/address_non_storable_type.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7936", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad-exception1.scilla.gold b/tests/checker/bad/gold/bad-exception1.scilla.gold index a4e8a4d11..ecc4bf1f7 100644 --- a/tests/checker/bad/gold/bad-exception1.scilla.gold +++ b/tests/checker/bad/gold/bad-exception1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7931", + "gas_remaining": "8000", "errors": [ { "error_message": "Cannot serialize values of type Uint32 -> Uint32.", diff --git a/tests/checker/bad/gold/bad_adt_1.scilla.gold b/tests/checker/bad/gold/bad_adt_1.scilla.gold index 61e48ad15..189171606 100644 --- a/tests/checker/bad/gold/bad_adt_1.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7962", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_2.scilla.gold b/tests/checker/bad/gold/bad_adt_2.scilla.gold index 9db4bb0ab..fbe41d320 100644 --- a/tests/checker/bad/gold/bad_adt_2.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7962", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_3.scilla.gold b/tests/checker/bad/gold/bad_adt_3.scilla.gold index aa01353a8..0933fde3a 100644 --- a/tests/checker/bad/gold/bad_adt_3.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7962", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_4.scilla.gold b/tests/checker/bad/gold/bad_adt_4.scilla.gold index e8712005b..867240802 100644 --- a/tests/checker/bad/gold/bad_adt_4.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_4.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7962", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract BadLib:\n", diff --git a/tests/checker/bad/gold/bad_adt_7.scilla.gold b/tests/checker/bad/gold/bad_adt_7.scilla.gold index dfd64a91a..c0c45abb5 100644 --- a/tests/checker/bad/gold/bad_adt_7.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_7.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7983", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract Test:\n", diff --git a/tests/checker/bad/gold/bad_adt_8.scilla.gold b/tests/checker/bad/gold/bad_adt_8.scilla.gold index b99fa8df3..0f0061d0e 100644 --- a/tests/checker/bad/gold/bad_adt_8.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_8.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7989", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract Test:\n", diff --git a/tests/checker/bad/gold/bad_adt_lib_3.scilla.gold b/tests/checker/bad/gold/bad_adt_lib_3.scilla.gold index 95149faf0..992f9b052 100644 --- a/tests/checker/bad/gold/bad_adt_lib_3.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_lib_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7971", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_lib_4.scilla.gold b/tests/checker/bad/gold/bad_adt_lib_4.scilla.gold index 294f4d017..561033eb1 100644 --- a/tests/checker/bad/gold/bad_adt_lib_4.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_lib_4.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7971", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_lib_5.scilla.gold b/tests/checker/bad/gold/bad_adt_lib_5.scilla.gold index a7f6569a4..3d7d6ee69 100644 --- a/tests/checker/bad/gold/bad_adt_lib_5.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_lib_5.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7967", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_adt_lib_6.scilla.gold b/tests/checker/bad/gold/bad_adt_lib_6.scilla.gold index 5dca51623..bbf3d74ef 100644 --- a/tests/checker/bad/gold/bad_adt_lib_6.scilla.gold +++ b/tests/checker/bad/gold/bad_adt_lib_6.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7967", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_cast_1.scilla.gold b/tests/checker/bad/gold/bad_cast_1.scilla.gold index 4a2f25312..5c2ab6cc4 100644 --- a/tests/checker/bad/gold/bad_cast_1.scilla.gold +++ b/tests/checker/bad/gold/bad_cast_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7977", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_cast_2.scilla.gold b/tests/checker/bad/gold/bad_cast_2.scilla.gold index 068a06e08..ae933c78c 100644 --- a/tests/checker/bad/gold/bad_cast_2.scilla.gold +++ b/tests/checker/bad/gold/bad_cast_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7975", + "gas_remaining": "8000", "errors": [ { "error_message": "Ends in an error in state: 286.\n", diff --git a/tests/checker/bad/gold/bad_cast_3.scilla.gold b/tests/checker/bad/gold/bad_cast_3.scilla.gold index f776d44e1..8c98fdfa0 100644 --- a/tests/checker/bad/gold/bad_cast_3.scilla.gold +++ b/tests/checker/bad/gold/bad_cast_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7975", + "gas_remaining": "8000", "errors": [ { "error_message": "Ends in an error in state: 286.\n", diff --git a/tests/checker/bad/gold/bad_comment_1.scilla.gold b/tests/checker/bad/gold/bad_comment_1.scilla.gold index 217c28e37..29cc93148 100644 --- a/tests/checker/bad/gold/bad_comment_1.scilla.gold +++ b/tests/checker/bad/gold/bad_comment_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7987", + "gas_remaining": "8000", "errors": [ { "error_message": "Lexical error: Comment unfinished", diff --git a/tests/checker/bad/gold/bad_comment_2.scilla.gold b/tests/checker/bad/gold/bad_comment_2.scilla.gold index 1b398ca16..39a32d0d8 100644 --- a/tests/checker/bad/gold/bad_comment_2.scilla.gold +++ b/tests/checker/bad/gold/bad_comment_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7985", + "gas_remaining": "8000", "errors": [ { "error_message": "Lexical error: Comment unfinished", diff --git a/tests/checker/bad/gold/bad_fields1.scilla.gold b/tests/checker/bad/gold/bad_fields1.scilla.gold index 9605f685c..b4c463014 100644 --- a/tests/checker/bad/gold/bad_fields1.scilla.gold +++ b/tests/checker/bad/gold/bad_fields1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7985", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_fields2.scilla.gold b/tests/checker/bad/gold/bad_fields2.scilla.gold index e44146d37..23d9e615e 100644 --- a/tests/checker/bad/gold/bad_fields2.scilla.gold +++ b/tests/checker/bad/gold/bad_fields2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7983", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_fields3.scilla.gold b/tests/checker/bad/gold/bad_fields3.scilla.gold index b9e9e5830..efe246e33 100644 --- a/tests/checker/bad/gold/bad_fields3.scilla.gold +++ b/tests/checker/bad/gold/bad_fields3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7984", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_fields4.scilla.gold b/tests/checker/bad/gold/bad_fields4.scilla.gold index c7cfe9f50..ab5ef534a 100644 --- a/tests/checker/bad/gold/bad_fields4.scilla.gold +++ b/tests/checker/bad/gold/bad_fields4.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7984", + "gas_remaining": "8000", "errors": [ { "error_message": "Values of the type \"Message\" cannot be stored.", diff --git a/tests/checker/bad/gold/bad_lib_pm_import.scilla.gold b/tests/checker/bad/gold/bad_lib_pm_import.scilla.gold index 715158316..fb0cc45d5 100644 --- a/tests/checker/bad/gold/bad_lib_pm_import.scilla.gold +++ b/tests/checker/bad/gold/bad_lib_pm_import.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7990", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract BadLibPM:\n", diff --git a/tests/checker/bad/gold/bad_lib_type.scilla.gold b/tests/checker/bad/gold/bad_lib_type.scilla.gold index acfee180d..8ce604682 100644 --- a/tests/checker/bad/gold/bad_lib_type.scilla.gold +++ b/tests/checker/bad/gold/bad_lib_type.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7946", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_lib_type2.scilla.gold b/tests/checker/bad/gold/bad_lib_type2.scilla.gold index 374a93e44..7fc694c3e 100644 --- a/tests/checker/bad/gold/bad_lib_type2.scilla.gold +++ b/tests/checker/bad/gold/bad_lib_type2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7894", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_lib_type3.scilla.gold b/tests/checker/bad/gold/bad_lib_type3.scilla.gold index 6be951856..1daa0a857 100644 --- a/tests/checker/bad/gold/bad_lib_type3.scilla.gold +++ b/tests/checker/bad/gold/bad_lib_type3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7892", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_map_key_1.scilla.gold b/tests/checker/bad/gold/bad_map_key_1.scilla.gold index dc01460a0..d170d2b39 100644 --- a/tests/checker/bad/gold/bad_map_key_1.scilla.gold +++ b/tests/checker/bad/gold/bad_map_key_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7976", + "gas_remaining": "8000", "errors": [ { "error_message": "Ends in an error in state: 97.\n", diff --git a/tests/checker/bad/gold/bad_map_key_5.scilla.gold b/tests/checker/bad/gold/bad_map_key_5.scilla.gold index 6e492c747..fb474b8b7 100644 --- a/tests/checker/bad/gold/bad_map_key_5.scilla.gold +++ b/tests/checker/bad/gold/bad_map_key_5.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7956", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_message1.scilla.gold b/tests/checker/bad/gold/bad_message1.scilla.gold index 99eb8ef46..0f07857df 100644 --- a/tests/checker/bad/gold/bad_message1.scilla.gold +++ b/tests/checker/bad/gold/bad_message1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7970", + "gas_remaining": "8000", "errors": [ { "error_message": "Cannot serialize values of type Message.", diff --git a/tests/checker/bad/gold/bad_message2.scilla.gold b/tests/checker/bad/gold/bad_message2.scilla.gold index b0c7c08a0..1b9ea0248 100644 --- a/tests/checker/bad/gold/bad_message2.scilla.gold +++ b/tests/checker/bad/gold/bad_message2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7921", + "gas_remaining": "8000", "errors": [ { "error_message": "Missing _amount or _recipient in Message\n", diff --git a/tests/checker/bad/gold/bad_param.scilla.gold b/tests/checker/bad/gold/bad_param.scilla.gold index e52080b19..24cd7eeef 100644 --- a/tests/checker/bad/gold/bad_param.scilla.gold +++ b/tests/checker/bad/gold/bad_param.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7989", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/bad_transition_param.scilla.gold b/tests/checker/bad/gold/bad_transition_param.scilla.gold index 3381ffa97..67dd70e87 100644 --- a/tests/checker/bad/gold/bad_transition_param.scilla.gold +++ b/tests/checker/bad/gold/bad_transition_param.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7980", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/balance_field.scilla.gold b/tests/checker/bad/gold/balance_field.scilla.gold index 873c4688c..74ec3a8ac 100644 --- a/tests/checker/bad/gold/balance_field.scilla.gold +++ b/tests/checker/bad/gold/balance_field.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7989", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/builtin_type_args.scilla.gold b/tests/checker/bad/gold/builtin_type_args.scilla.gold index 1fc628b22..e92ce90fa 100644 --- a/tests/checker/bad/gold/builtin_type_args.scilla.gold +++ b/tests/checker/bad/gold/builtin_type_args.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7977", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/constraint_field_not_in_scope.scilla.gold b/tests/checker/bad/gold/constraint_field_not_in_scope.scilla.gold index 2cb8a20a9..6a1669137 100644 --- a/tests/checker/bad/gold/constraint_field_not_in_scope.scilla.gold +++ b/tests/checker/bad/gold/constraint_field_not_in_scope.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7988", + "gas_remaining": "8000", "errors": [ { "error_message": "Couldn't resolve the identifier \"f\".\n", diff --git a/tests/checker/bad/gold/constraint_locals_not_in_scope.scilla.gold b/tests/checker/bad/gold/constraint_locals_not_in_scope.scilla.gold index 68c46a1eb..96dc69a46 100644 --- a/tests/checker/bad/gold/constraint_locals_not_in_scope.scilla.gold +++ b/tests/checker/bad/gold/constraint_locals_not_in_scope.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7982", + "gas_remaining": "8000", "errors": [ { "error_message": "Couldn't resolve the identifier \"x\".\n", diff --git a/tests/checker/bad/gold/constraint_type_illegal.scilla.gold b/tests/checker/bad/gold/constraint_type_illegal.scilla.gold index 9c74ccc2f..e260a8ea0 100644 --- a/tests/checker/bad/gold/constraint_type_illegal.scilla.gold +++ b/tests/checker/bad/gold/constraint_type_illegal.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7988", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/event_bad1.scilla.gold b/tests/checker/bad/gold/event_bad1.scilla.gold index 7b841d5d0..9058e72e0 100644 --- a/tests/checker/bad/gold/event_bad1.scilla.gold +++ b/tests/checker/bad/gold/event_bad1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7429", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/event_bad2.scilla.gold b/tests/checker/bad/gold/event_bad2.scilla.gold index 4c2ae163a..c34958e48 100644 --- a/tests/checker/bad/gold/event_bad2.scilla.gold +++ b/tests/checker/bad/gold/event_bad2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7442", + "gas_remaining": "8000", "errors": [ { "error_message": "Error determining event name\n", diff --git a/tests/checker/bad/gold/forward_definition_procedure.scilla.gold b/tests/checker/bad/gold/forward_definition_procedure.scilla.gold index a40337aee..28dfb5759 100644 --- a/tests/checker/bad/gold/forward_definition_procedure.scilla.gold +++ b/tests/checker/bad/gold/forward_definition_procedure.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7957", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/global_scope_procedures.scilla.gold b/tests/checker/bad/gold/global_scope_procedures.scilla.gold index b05f40fd5..f82f0e010 100644 --- a/tests/checker/bad/gold/global_scope_procedures.scilla.gold +++ b/tests/checker/bad/gold/global_scope_procedures.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7959", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract GlobalScopeProcedure:\n", diff --git a/tests/checker/bad/gold/homonymous_vars.scilla.gold b/tests/checker/bad/gold/homonymous_vars.scilla.gold index 6565a8549..402c2586b 100644 --- a/tests/checker/bad/gold/homonymous_vars.scilla.gold +++ b/tests/checker/bad/gold/homonymous_vars.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7945", + "gas_remaining": "8000", "errors": [ { "error_message": "Couldn't resolve the identifier \"sxamount\".\n", diff --git a/tests/checker/bad/gold/homonymous_vars2.scilla.gold b/tests/checker/bad/gold/homonymous_vars2.scilla.gold index 92c73f9d0..ee3dc4e72 100644 --- a/tests/checker/bad/gold/homonymous_vars2.scilla.gold +++ b/tests/checker/bad/gold/homonymous_vars2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7935", + "gas_remaining": "8000", "errors": [ { "error_message": "Couldn't resolve the identifier \"sxamount\".\n", diff --git a/tests/checker/bad/gold/homonymous_vars3.scilla.gold b/tests/checker/bad/gold/homonymous_vars3.scilla.gold index d7094a56e..d9bc6b8c0 100644 --- a/tests/checker/bad/gold/homonymous_vars3.scilla.gold +++ b/tests/checker/bad/gold/homonymous_vars3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7945", + "gas_remaining": "8000", "errors": [ { "error_message": "Couldn't resolve the identifier \"sxamount\".\n", diff --git a/tests/checker/bad/gold/import-test-lib-bad_1.scilla.gold b/tests/checker/bad/gold/import-test-lib-bad_1.scilla.gold index 8ecabcfc3..3e2e50a95 100644 --- a/tests/checker/bad/gold/import-test-lib-bad_1.scilla.gold +++ b/tests/checker/bad/gold/import-test-lib-bad_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7812", + "gas_remaining": "8000", "errors": [ { "error_message": "Cannot serialize values of type BaseType2.", diff --git a/tests/checker/bad/gold/import-test-lib-bad_2.scilla.gold b/tests/checker/bad/gold/import-test-lib-bad_2.scilla.gold index beb83d607..8cb1df19f 100644 --- a/tests/checker/bad/gold/import-test-lib-bad_2.scilla.gold +++ b/tests/checker/bad/gold/import-test-lib-bad_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7945", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract ImportNestedTestLibBad2:\n", diff --git a/tests/checker/bad/gold/import-test-lib-bad_3.scilla.gold b/tests/checker/bad/gold/import-test-lib-bad_3.scilla.gold index 7faea756a..44ed2fbd5 100644 --- a/tests/checker/bad/gold/import-test-lib-bad_3.scilla.gold +++ b/tests/checker/bad/gold/import-test-lib-bad_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7953", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract ImportNestedTestLibBad3:\n", diff --git a/tests/checker/bad/gold/inplace-map.scilla.gold b/tests/checker/bad/gold/inplace-map.scilla.gold index f8fa0d2ae..1d92ca955 100644 --- a/tests/checker/bad/gold/inplace-map.scilla.gold +++ b/tests/checker/bad/gold/inplace-map.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7677", + "gas_remaining": "7913", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/lib_bad1.scilla.gold b/tests/checker/bad/gold/lib_bad1.scilla.gold index cb5cb9f0f..430f0100e 100644 --- a/tests/checker/bad/gold/lib_bad1.scilla.gold +++ b/tests/checker/bad/gold/lib_bad1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7819", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/libdup1.scilla.gold b/tests/checker/bad/gold/libdup1.scilla.gold index 93f5d1c39..f6707dd89 100644 --- a/tests/checker/bad/gold/libdup1.scilla.gold +++ b/tests/checker/bad/gold/libdup1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7992", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/libdup2.scilla.gold b/tests/checker/bad/gold/libdup2.scilla.gold index 56d1d345f..31e88a896 100644 --- a/tests/checker/bad/gold/libdup2.scilla.gold +++ b/tests/checker/bad/gold/libdup2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7985", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/libindirect.scilla.gold b/tests/checker/bad/gold/libindirect.scilla.gold index dc61b8166..409dd0bd4 100644 --- a/tests/checker/bad/gold/libindirect.scilla.gold +++ b/tests/checker/bad/gold/libindirect.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7896", + "gas_remaining": "7917", "errors": [ { "error_message": "Couldn't resolve the identifier \"list_sort\".\n", diff --git a/tests/checker/bad/gold/listiter-bad.scilla.gold b/tests/checker/bad/gold/listiter-bad.scilla.gold index 83b0b6155..11d1d0ee9 100644 --- a/tests/checker/bad/gold/listiter-bad.scilla.gold +++ b/tests/checker/bad/gold/listiter-bad.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7957", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/map_value_function.scilla.gold b/tests/checker/bad/gold/map_value_function.scilla.gold index 9a36ef955..e5587e0f8 100644 --- a/tests/checker/bad/gold/map_value_function.scilla.gold +++ b/tests/checker/bad/gold/map_value_function.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7970", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/mappair.scilla.gold b/tests/checker/bad/gold/mappair.scilla.gold index 044e20f80..4680c18db 100644 --- a/tests/checker/bad/gold/mappair.scilla.gold +++ b/tests/checker/bad/gold/mappair.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7618", + "gas_remaining": "7909", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/mappair2.scilla.gold b/tests/checker/bad/gold/mappair2.scilla.gold index 695061771..0e7f34f14 100644 --- a/tests/checker/bad/gold/mappair2.scilla.gold +++ b/tests/checker/bad/gold/mappair2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7572", + "gas_remaining": "7909", "errors": [ { "error_message": "Identifier malMessage1 used more than once\n", diff --git a/tests/checker/bad/gold/match-in-transition.scilla.gold b/tests/checker/bad/gold/match-in-transition.scilla.gold index eff6d6c90..591bc11b7 100644 --- a/tests/checker/bad/gold/match-in-transition.scilla.gold +++ b/tests/checker/bad/gold/match-in-transition.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7970", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract Matcher:\n", diff --git a/tests/checker/bad/gold/message_field.scilla.gold b/tests/checker/bad/gold/message_field.scilla.gold index ea85b8424..e04fe906c 100644 --- a/tests/checker/bad/gold/message_field.scilla.gold +++ b/tests/checker/bad/gold/message_field.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7913", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/message_field2.scilla.gold b/tests/checker/bad/gold/message_field2.scilla.gold index 6b6a50b78..68a655b9a 100644 --- a/tests/checker/bad/gold/message_field2.scilla.gold +++ b/tests/checker/bad/gold/message_field2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7947", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/message_field3.scilla.gold b/tests/checker/bad/gold/message_field3.scilla.gold index 51efea0dd..922742bd2 100644 --- a/tests/checker/bad/gold/message_field3.scilla.gold +++ b/tests/checker/bad/gold/message_field3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7946", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/mutually_recursive_procedure.scilla.gold b/tests/checker/bad/gold/mutually_recursive_procedure.scilla.gold index f0ed1a6c1..cb7ca6cff 100644 --- a/tests/checker/bad/gold/mutually_recursive_procedure.scilla.gold +++ b/tests/checker/bad/gold/mutually_recursive_procedure.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7962", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/name_clashes.scilla.gold b/tests/checker/bad/gold/name_clashes.scilla.gold index eb75f26ec..b32aad9ba 100644 --- a/tests/checker/bad/gold/name_clashes.scilla.gold +++ b/tests/checker/bad/gold/name_clashes.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7916", + "gas_remaining": "8000", "errors": [ { "error_message": "Identifier Proc1 used more than once\n", diff --git a/tests/checker/bad/gold/namespace1.scilla.gold b/tests/checker/bad/gold/namespace1.scilla.gold index e7107e575..1c1f67bd0 100644 --- a/tests/checker/bad/gold/namespace1.scilla.gold +++ b/tests/checker/bad/gold/namespace1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7981", + "gas_remaining": "8000", "errors": [ { "error_message": "Unknown namespace Bar", diff --git a/tests/checker/bad/gold/procedure_bad_args.scilla.gold b/tests/checker/bad/gold/procedure_bad_args.scilla.gold index 3c25cd30e..6dfb3a099 100644 --- a/tests/checker/bad/gold/procedure_bad_args.scilla.gold +++ b/tests/checker/bad/gold/procedure_bad_args.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7916", + "gas_remaining": "8000", "errors": [ { "error_message": "Incorrect number of arguments to procedure", diff --git a/tests/checker/bad/gold/procedure_bad_type.scilla.gold b/tests/checker/bad/gold/procedure_bad_type.scilla.gold index 50e5fc2ab..2556a7d4c 100644 --- a/tests/checker/bad/gold/procedure_bad_type.scilla.gold +++ b/tests/checker/bad/gold/procedure_bad_type.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7952", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/procedure_env.scilla.gold b/tests/checker/bad/gold/procedure_env.scilla.gold index 253b33871..ca78c965f 100644 --- a/tests/checker/bad/gold/procedure_env.scilla.gold +++ b/tests/checker/bad/gold/procedure_env.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7958", + "gas_remaining": "8000", "errors": [ { "error_message": "Couldn't resolve the identifier \"_tag\".\n", diff --git a/tests/checker/bad/gold/procedure_map_arg.scilla.gold b/tests/checker/bad/gold/procedure_map_arg.scilla.gold index 39c0ee27b..9b575243d 100644 --- a/tests/checker/bad/gold/procedure_map_arg.scilla.gold +++ b/tests/checker/bad/gold/procedure_map_arg.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7898", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/recursive_procedure.scilla.gold b/tests/checker/bad/gold/recursive_procedure.scilla.gold index 4cc581580..4a3646944 100644 --- a/tests/checker/bad/gold/recursive_procedure.scilla.gold +++ b/tests/checker/bad/gold/recursive_procedure.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7975", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract RecursiveProcedure:\n", diff --git a/tests/checker/bad/gold/remote_read_bad_1.scilla.gold b/tests/checker/bad/gold/remote_read_bad_1.scilla.gold index d66a4dea8..829d2134d 100644 --- a/tests/checker/bad/gold/remote_read_bad_1.scilla.gold +++ b/tests/checker/bad/gold/remote_read_bad_1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7916", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/remote_read_bad_2.scilla.gold b/tests/checker/bad/gold/remote_read_bad_2.scilla.gold index a2960edfd..3e0ad48ed 100644 --- a/tests/checker/bad/gold/remote_read_bad_2.scilla.gold +++ b/tests/checker/bad/gold/remote_read_bad_2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7915", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/remote_read_bad_3.scilla.gold b/tests/checker/bad/gold/remote_read_bad_3.scilla.gold index a61fd60a1..f531c01e5 100644 --- a/tests/checker/bad/gold/remote_read_bad_3.scilla.gold +++ b/tests/checker/bad/gold/remote_read_bad_3.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7933", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/remote_read_non_address.scilla.gold b/tests/checker/bad/gold/remote_read_non_address.scilla.gold index eefce1061..c4f423762 100644 --- a/tests/checker/bad/gold/remote_read_non_address.scilla.gold +++ b/tests/checker/bad/gold/remote_read_non_address.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7981", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/remote_read_spid.scilla.gold b/tests/checker/bad/gold/remote_read_spid.scilla.gold index 4742f8502..58cd28d36 100644 --- a/tests/checker/bad/gold/remote_read_spid.scilla.gold +++ b/tests/checker/bad/gold/remote_read_spid.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7981", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/send_event1.scilla.gold b/tests/checker/bad/gold/send_event1.scilla.gold index 891448abe..940510d34 100644 --- a/tests/checker/bad/gold/send_event1.scilla.gold +++ b/tests/checker/bad/gold/send_event1.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7160", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/send_event2.scilla.gold b/tests/checker/bad/gold/send_event2.scilla.gold index a2457f4f7..29a93b99f 100644 --- a/tests/checker/bad/gold/send_event2.scilla.gold +++ b/tests/checker/bad/gold/send_event2.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7161", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/unbound.scilla.gold b/tests/checker/bad/gold/unbound.scilla.gold index 4dfc70fed..ff0d40f73 100644 --- a/tests/checker/bad/gold/unbound.scilla.gold +++ b/tests/checker/bad/gold/unbound.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7418", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract Crowdfunding:\n", diff --git a/tests/checker/bad/gold/unserializable_param.scilla.gold b/tests/checker/bad/gold/unserializable_param.scilla.gold index 795639d57..5e9b41e39 100644 --- a/tests/checker/bad/gold/unserializable_param.scilla.gold +++ b/tests/checker/bad/gold/unserializable_param.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7934", + "gas_remaining": "8000", "errors": [ { "error_message": "Type Test cannot be used as transition parameter", diff --git a/tests/checker/bad/gold/unstorable_adt.scilla.gold b/tests/checker/bad/gold/unstorable_adt.scilla.gold index 54a03f764..10e4a9ea6 100644 --- a/tests/checker/bad/gold/unstorable_adt.scilla.gold +++ b/tests/checker/bad/gold/unstorable_adt.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7939", + "gas_remaining": "8000", "errors": [ { "error_message": diff --git a/tests/checker/bad/gold/zil_mod.scilla.gold b/tests/checker/bad/gold/zil_mod.scilla.gold index 7eb0fedef..7c241dc1b 100644 --- a/tests/checker/bad/gold/zil_mod.scilla.gold +++ b/tests/checker/bad/gold/zil_mod.scilla.gold @@ -1,5 +1,5 @@ { - "gas_remaining": "7158", + "gas_remaining": "8000", "errors": [ { "error_message": "Type error(s) in contract ZilGame:\n", diff --git a/tests/checker/good/gold/InstantiatedListUtils.scillib.gold b/tests/checker/good/gold/InstantiatedListUtils.scillib.gold index d816f62f5..2f74c8c1d 100644 --- a/tests/checker/good/gold/InstantiatedListUtils.scillib.gold +++ b/tests/checker/good/gold/InstantiatedListUtils.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7903" } +{ "warnings": [], "gas_remaining": "7917" } diff --git a/tests/checker/good/gold/TestLibNS1.scillib.gold b/tests/checker/good/gold/TestLibNS1.scillib.gold index a192769e2..bfcd15542 100644 --- a/tests/checker/good/gold/TestLibNS1.scillib.gold +++ b/tests/checker/good/gold/TestLibNS1.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7984" } +{ "warnings": [], "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/TestLibNS2.scillib.gold b/tests/checker/good/gold/TestLibNS2.scillib.gold index aeddebed5..bfcd15542 100644 --- a/tests/checker/good/gold/TestLibNS2.scillib.gold +++ b/tests/checker/good/gold/TestLibNS2.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7989" } +{ "warnings": [], "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/TestLibNS3.scillib.gold b/tests/checker/good/gold/TestLibNS3.scillib.gold index 6f3733685..bfcd15542 100644 --- a/tests/checker/good/gold/TestLibNS3.scillib.gold +++ b/tests/checker/good/gold/TestLibNS3.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7973" } +{ "warnings": [], "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/TestLibNS4.scillib.gold b/tests/checker/good/gold/TestLibNS4.scillib.gold index 2217c8e3d..bfcd15542 100644 --- a/tests/checker/good/gold/TestLibNS4.scillib.gold +++ b/tests/checker/good/gold/TestLibNS4.scillib.gold @@ -1,2 +1,2 @@ -{ "warnings": [], "gas_remaining": "7975" } +{ "warnings": [], "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/UintParam.scilla.gold b/tests/checker/good/gold/UintParam.scilla.gold index 9448aad3d..e6756eb11 100644 --- a/tests/checker/good/gold/UintParam.scilla.gold +++ b/tests/checker/good/gold/UintParam.scilla.gold @@ -86,6 +86,6 @@ "warning_id": 1 } ], - "gas_remaining": "7964" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/address_eq_test.scilla.gold b/tests/checker/good/gold/address_eq_test.scilla.gold index f98b23728..4ae78292b 100644 --- a/tests/checker/good/gold/address_eq_test.scilla.gold +++ b/tests/checker/good/gold/address_eq_test.scilla.gold @@ -423,6 +423,6 @@ "warning_id": 1 } ], - "gas_remaining": "7512" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/address_list_as_cparam.scilla.gold b/tests/checker/good/gold/address_list_as_cparam.scilla.gold index b1d1d89b1..8cf1091ec 100644 --- a/tests/checker/good/gold/address_list_as_cparam.scilla.gold +++ b/tests/checker/good/gold/address_list_as_cparam.scilla.gold @@ -84,6 +84,6 @@ "warning_id": 1 } ], - "gas_remaining": "7981" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/address_list_traversal.scilla.gold b/tests/checker/good/gold/address_list_traversal.scilla.gold index e592a1918..8b6c43197 100644 --- a/tests/checker/good/gold/address_list_traversal.scilla.gold +++ b/tests/checker/good/gold/address_list_traversal.scilla.gold @@ -126,6 +126,6 @@ "warning_id": 1 } ], - "gas_remaining": "7714" + "gas_remaining": "7913" } diff --git a/tests/checker/good/gold/adt_test.scilla.gold b/tests/checker/good/gold/adt_test.scilla.gold index 54334f3cd..94cef0cfe 100644 --- a/tests/checker/good/gold/adt_test.scilla.gold +++ b/tests/checker/good/gold/adt_test.scilla.gold @@ -112,6 +112,6 @@ "warning_id": 1 } ], - "gas_remaining": "7957" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/auction.scilla.gold b/tests/checker/good/gold/auction.scilla.gold index 4a09468d4..1c4917650 100644 --- a/tests/checker/good/gold/auction.scilla.gold +++ b/tests/checker/good/gold/auction.scilla.gold @@ -105,6 +105,6 @@ "warning_id": 1 } ], - "gas_remaining": "7406" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/auction.scilla.typeinfo.gold b/tests/checker/good/gold/auction.scilla.typeinfo.gold index 686b86b33..632509a52 100644 --- a/tests/checker/good/gold/auction.scilla.typeinfo.gold +++ b/tests/checker/good/gold/auction.scilla.typeinfo.gold @@ -2699,6 +2699,6 @@ "warning_id": 1 } ], - "gas_remaining": "7406" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/backward_definition_procedure.scilla.gold b/tests/checker/good/gold/backward_definition_procedure.scilla.gold index 0ec23c4f4..65fd62acc 100644 --- a/tests/checker/good/gold/backward_definition_procedure.scilla.gold +++ b/tests/checker/good/gold/backward_definition_procedure.scilla.gold @@ -93,6 +93,6 @@ "warning_id": 1 } ], - "gas_remaining": "7959" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/blockchain_import.scilla.gold b/tests/checker/good/gold/blockchain_import.scilla.gold index f5285b62f..d8f157de2 100644 --- a/tests/checker/good/gold/blockchain_import.scilla.gold +++ b/tests/checker/good/gold/blockchain_import.scilla.gold @@ -11,6 +11,6 @@ "warning_id": 3 } ], - "gas_remaining": "7914" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/blowup_1.scilla.gold b/tests/checker/good/gold/blowup_1.scilla.gold index 141a938e6..1219f5361 100644 --- a/tests/checker/good/gold/blowup_1.scilla.gold +++ b/tests/checker/good/gold/blowup_1.scilla.gold @@ -110,6 +110,6 @@ "warning_id": 1 } ], - "gas_remaining": "5864" + "gas_remaining": "5951" } diff --git a/tests/checker/good/gold/blowup_2.scilla.gold b/tests/checker/good/gold/blowup_2.scilla.gold index 06efca59b..f7f96709f 100644 --- a/tests/checker/good/gold/blowup_2.scilla.gold +++ b/tests/checker/good/gold/blowup_2.scilla.gold @@ -110,6 +110,6 @@ "warning_id": 1 } ], - "gas_remaining": "3811" + "gas_remaining": "3903" } diff --git a/tests/checker/good/gold/bookstore.scilla.gold b/tests/checker/good/gold/bookstore.scilla.gold index f4da105f7..8637d1dc5 100644 --- a/tests/checker/good/gold/bookstore.scilla.gold +++ b/tests/checker/good/gold/bookstore.scilla.gold @@ -245,6 +245,6 @@ "warning_id": 1 } ], - "gas_remaining": "6832" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/builtin_type_args.scilla.gold b/tests/checker/good/gold/builtin_type_args.scilla.gold index a571e3723..2ab145d5e 100644 --- a/tests/checker/good/gold/builtin_type_args.scilla.gold +++ b/tests/checker/good/gold/builtin_type_args.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7977" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/cashflow_test.scilla.gold b/tests/checker/good/gold/cashflow_test.scilla.gold index 35db519d9..e35770288 100644 --- a/tests/checker/good/gold/cashflow_test.scilla.gold +++ b/tests/checker/good/gold/cashflow_test.scilla.gold @@ -134,6 +134,6 @@ "warning_id": 1 } ], - "gas_remaining": "7829" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/cfinvoke.scilla.gold b/tests/checker/good/gold/cfinvoke.scilla.gold index 3bd7a6001..0e2b3b90c 100644 --- a/tests/checker/good/gold/cfinvoke.scilla.gold +++ b/tests/checker/good/gold/cfinvoke.scilla.gold @@ -85,6 +85,6 @@ "warning_id": 3 } ], - "gas_remaining": "7800" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/chain-call-balance-1.scilla.gold b/tests/checker/good/gold/chain-call-balance-1.scilla.gold index ce39f2650..98a84ffad 100644 --- a/tests/checker/good/gold/chain-call-balance-1.scilla.gold +++ b/tests/checker/good/gold/chain-call-balance-1.scilla.gold @@ -58,6 +58,6 @@ ] }, "warnings": [], - "gas_remaining": "7941" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/chain-call-balance-2.scilla.gold b/tests/checker/good/gold/chain-call-balance-2.scilla.gold index 98f875133..4d34d6186 100644 --- a/tests/checker/good/gold/chain-call-balance-2.scilla.gold +++ b/tests/checker/good/gold/chain-call-balance-2.scilla.gold @@ -55,6 +55,6 @@ ] }, "warnings": [], - "gas_remaining": "7947" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/chain-call-balance-3.scilla.gold b/tests/checker/good/gold/chain-call-balance-3.scilla.gold index 353018428..a33af4168 100644 --- a/tests/checker/good/gold/chain-call-balance-3.scilla.gold +++ b/tests/checker/good/gold/chain-call-balance-3.scilla.gold @@ -52,6 +52,6 @@ ] }, "warnings": [], - "gas_remaining": "7950" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/constraint.scilla.gold b/tests/checker/good/gold/constraint.scilla.gold index 0f9de7ca4..1309a41e6 100644 --- a/tests/checker/good/gold/constraint.scilla.gold +++ b/tests/checker/good/gold/constraint.scilla.gold @@ -60,6 +60,6 @@ "warning_id": 1 } ], - "gas_remaining": "7976" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/constraint_scope.scilla.gold b/tests/checker/good/gold/constraint_scope.scilla.gold index acb05338e..30bb89a66 100644 --- a/tests/checker/good/gold/constraint_scope.scilla.gold +++ b/tests/checker/good/gold/constraint_scope.scilla.gold @@ -137,6 +137,6 @@ "warning_id": 1 } ], - "gas_remaining": "7933" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/crowdfunding.scilla.gold b/tests/checker/good/gold/crowdfunding.scilla.gold index aad0667ce..95ec6b1d1 100644 --- a/tests/checker/good/gold/crowdfunding.scilla.gold +++ b/tests/checker/good/gold/crowdfunding.scilla.gold @@ -139,6 +139,6 @@ "warning_id": 1 } ], - "gas_remaining": "7477" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/crowdfunding_proc.scilla.gold b/tests/checker/good/gold/crowdfunding_proc.scilla.gold index 40c785d07..06a84562d 100644 --- a/tests/checker/good/gold/crowdfunding_proc.scilla.gold +++ b/tests/checker/good/gold/crowdfunding_proc.scilla.gold @@ -132,6 +132,6 @@ ] }, "warnings": [], - "gas_remaining": "7417" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/dead_code_test1.scilla.gold b/tests/checker/good/gold/dead_code_test1.scilla.gold index 5842998ee..9d091b923 100644 --- a/tests/checker/good/gold/dead_code_test1.scilla.gold +++ b/tests/checker/good/gold/dead_code_test1.scilla.gold @@ -378,6 +378,6 @@ "warning_id": 1 } ], - "gas_remaining": "6833" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/dead_code_test2.scilla.gold b/tests/checker/good/gold/dead_code_test2.scilla.gold index 8b6ebd8c1..ba23659ea 100644 --- a/tests/checker/good/gold/dead_code_test2.scilla.gold +++ b/tests/checker/good/gold/dead_code_test2.scilla.gold @@ -88,6 +88,6 @@ "warning_id": 3 } ], - "gas_remaining": "7947" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/dead_code_test3.scilla.gold b/tests/checker/good/gold/dead_code_test3.scilla.gold index 2e564a7a9..4d39be5ed 100644 --- a/tests/checker/good/gold/dead_code_test3.scilla.gold +++ b/tests/checker/good/gold/dead_code_test3.scilla.gold @@ -87,6 +87,6 @@ "warning_id": 1 } ], - "gas_remaining": "7959" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/dead_code_test4.scilla.gold b/tests/checker/good/gold/dead_code_test4.scilla.gold index cbb96bc54..d846d1592 100644 --- a/tests/checker/good/gold/dead_code_test4.scilla.gold +++ b/tests/checker/good/gold/dead_code_test4.scilla.gold @@ -134,6 +134,6 @@ "warning_id": 1 } ], - "gas_remaining": "7930" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/earmarked-coin.scilla.gold b/tests/checker/good/gold/earmarked-coin.scilla.gold index 024eec543..c24ef47ac 100644 --- a/tests/checker/good/gold/earmarked-coin.scilla.gold +++ b/tests/checker/good/gold/earmarked-coin.scilla.gold @@ -142,6 +142,6 @@ "warning_id": 3 } ], - "gas_remaining": "7554" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/ecdsa.scilla.gold b/tests/checker/good/gold/ecdsa.scilla.gold index 6299b8cf4..914fee24a 100644 --- a/tests/checker/good/gold/ecdsa.scilla.gold +++ b/tests/checker/good/gold/ecdsa.scilla.gold @@ -113,6 +113,6 @@ "warning_id": 1 } ], - "gas_remaining": "7875" + "gas_remaining": "7997" } diff --git a/tests/checker/good/gold/empty.scilla.gold b/tests/checker/good/gold/empty.scilla.gold index c460b60f9..e6beb764f 100644 --- a/tests/checker/good/gold/empty.scilla.gold +++ b/tests/checker/good/gold/empty.scilla.gold @@ -107,6 +107,6 @@ "warning_id": 1 } ], - "gas_remaining": "7834" + "gas_remaining": "7855" } diff --git a/tests/checker/good/gold/event_reordered_fields.scilla.gold b/tests/checker/good/gold/event_reordered_fields.scilla.gold index 5a3f9ade4..158fd89fd 100644 --- a/tests/checker/good/gold/event_reordered_fields.scilla.gold +++ b/tests/checker/good/gold/event_reordered_fields.scilla.gold @@ -100,6 +100,6 @@ "warning_id": 1 } ], - "gas_remaining": "7973" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/fungible-token.scilla.gold b/tests/checker/good/gold/fungible-token.scilla.gold index 2759d388d..739ab6628 100644 --- a/tests/checker/good/gold/fungible-token.scilla.gold +++ b/tests/checker/good/gold/fungible-token.scilla.gold @@ -156,6 +156,6 @@ "warning_id": 1 } ], - "gas_remaining": "7232" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/helloWorld.scilla.gold b/tests/checker/good/gold/helloWorld.scilla.gold index 255cbb742..85a90b6c6 100644 --- a/tests/checker/good/gold/helloWorld.scilla.gold +++ b/tests/checker/good/gold/helloWorld.scilla.gold @@ -94,6 +94,6 @@ "warning_id": 1 } ], - "gas_remaining": "7744" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/import-test-lib.scilla.gold b/tests/checker/good/gold/import-test-lib.scilla.gold index 087cce090..432320f45 100644 --- a/tests/checker/good/gold/import-test-lib.scilla.gold +++ b/tests/checker/good/gold/import-test-lib.scilla.gold @@ -126,6 +126,6 @@ "warning_id": 1 } ], - "gas_remaining": "7515" + "gas_remaining": "7859" } diff --git a/tests/checker/good/gold/import-test-lib2.scilla.gold b/tests/checker/good/gold/import-test-lib2.scilla.gold index fd87c6d4a..439d044f7 100644 --- a/tests/checker/good/gold/import-test-lib2.scilla.gold +++ b/tests/checker/good/gold/import-test-lib2.scilla.gold @@ -119,6 +119,6 @@ "warning_id": 1 } ], - "gas_remaining": "7711" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/import-test-lib3.scilla.gold b/tests/checker/good/gold/import-test-lib3.scilla.gold index 43b45ebeb..371ed5538 100644 --- a/tests/checker/good/gold/import-test-lib3.scilla.gold +++ b/tests/checker/good/gold/import-test-lib3.scilla.gold @@ -81,6 +81,6 @@ "warning_id": 1 } ], - "gas_remaining": "7767" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/inplace-map.scilla.gold b/tests/checker/good/gold/inplace-map.scilla.gold index a959a65fe..6defd3e43 100644 --- a/tests/checker/good/gold/inplace-map.scilla.gold +++ b/tests/checker/good/gold/inplace-map.scilla.gold @@ -141,6 +141,6 @@ "warning_id": 1 } ], - "gas_remaining": "7688" + "gas_remaining": "7913" } diff --git a/tests/checker/good/gold/lib_typing.scilla.gold b/tests/checker/good/gold/lib_typing.scilla.gold index 18631b5de..ad7f71ce5 100644 --- a/tests/checker/good/gold/lib_typing.scilla.gold +++ b/tests/checker/good/gold/lib_typing.scilla.gold @@ -87,6 +87,6 @@ "warning_id": 1 } ], - "gas_remaining": "7984" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/lib_typing2.scilla.gold b/tests/checker/good/gold/lib_typing2.scilla.gold index 388deedf8..b2385ca20 100644 --- a/tests/checker/good/gold/lib_typing2.scilla.gold +++ b/tests/checker/good/gold/lib_typing2.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7895" + "gas_remaining": "7996" } diff --git a/tests/checker/good/gold/libchain1.scilla.gold b/tests/checker/good/gold/libchain1.scilla.gold index 861b50c3a..1d483d0e5 100644 --- a/tests/checker/good/gold/libchain1.scilla.gold +++ b/tests/checker/good/gold/libchain1.scilla.gold @@ -95,6 +95,6 @@ "warning_id": 1 } ], - "gas_remaining": "7904" + "gas_remaining": "7917" } diff --git a/tests/checker/good/gold/libchain2.scilla.gold b/tests/checker/good/gold/libchain2.scilla.gold index 63bd5ec82..8f9f4771f 100644 --- a/tests/checker/good/gold/libchain2.scilla.gold +++ b/tests/checker/good/gold/libchain2.scilla.gold @@ -95,6 +95,6 @@ "warning_id": 1 } ], - "gas_remaining": "7903" + "gas_remaining": "7916" } diff --git a/tests/checker/good/gold/libdiamond.scilla.gold b/tests/checker/good/gold/libdiamond.scilla.gold index 65366a57d..8407b1e20 100644 --- a/tests/checker/good/gold/libdiamond.scilla.gold +++ b/tests/checker/good/gold/libdiamond.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7989" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/libdiamond2.scilla.gold b/tests/checker/good/gold/libdiamond2.scilla.gold index 293e4a1b3..a72ae6c0b 100644 --- a/tests/checker/good/gold/libdiamond2.scilla.gold +++ b/tests/checker/good/gold/libdiamond2.scilla.gold @@ -77,6 +77,6 @@ "warning_id": 1 } ], - "gas_remaining": "7980" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/listiter.scilla.gold b/tests/checker/good/gold/listiter.scilla.gold index fe8f34c76..c561533da 100644 --- a/tests/checker/good/gold/listiter.scilla.gold +++ b/tests/checker/good/gold/listiter.scilla.gold @@ -95,6 +95,6 @@ "warning_id": 1 } ], - "gas_remaining": "7957" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/map-inplace-update-with-_sender.scilla.gold b/tests/checker/good/gold/map-inplace-update-with-_sender.scilla.gold index 49c72afac..d59ce149f 100644 --- a/tests/checker/good/gold/map-inplace-update-with-_sender.scilla.gold +++ b/tests/checker/good/gold/map-inplace-update-with-_sender.scilla.gold @@ -72,6 +72,6 @@ "warning_id": 1 } ], - "gas_remaining": "7981" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/map_as_cparam.scilla.gold b/tests/checker/good/gold/map_as_cparam.scilla.gold index 03491c582..1a91fb746 100644 --- a/tests/checker/good/gold/map_as_cparam.scilla.gold +++ b/tests/checker/good/gold/map_as_cparam.scilla.gold @@ -86,6 +86,6 @@ "warning_id": 1 } ], - "gas_remaining": "7966" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/map_corners_test.scilla.gold b/tests/checker/good/gold/map_corners_test.scilla.gold index 30fcebec3..390ec907c 100644 --- a/tests/checker/good/gold/map_corners_test.scilla.gold +++ b/tests/checker/good/gold/map_corners_test.scilla.gold @@ -265,6 +265,6 @@ "warning_id": 1 } ], - "gas_remaining": "5967" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/map_corners_test.scilla.typeinfo.gold b/tests/checker/good/gold/map_corners_test.scilla.typeinfo.gold index f9c817a86..116ee06ce 100644 --- a/tests/checker/good/gold/map_corners_test.scilla.typeinfo.gold +++ b/tests/checker/good/gold/map_corners_test.scilla.typeinfo.gold @@ -9870,6 +9870,6 @@ "warning_id": 1 } ], - "gas_remaining": "5967" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/map_key_test.scilla.gold b/tests/checker/good/gold/map_key_test.scilla.gold index caa2a6b39..62d76b85a 100644 --- a/tests/checker/good/gold/map_key_test.scilla.gold +++ b/tests/checker/good/gold/map_key_test.scilla.gold @@ -131,6 +131,6 @@ "warning_id": 1 } ], - "gas_remaining": "7970" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/map_no_inplace_warn.scilla.gold b/tests/checker/good/gold/map_no_inplace_warn.scilla.gold index 9f2201b1f..941aac1d9 100644 --- a/tests/checker/good/gold/map_no_inplace_warn.scilla.gold +++ b/tests/checker/good/gold/map_no_inplace_warn.scilla.gold @@ -163,6 +163,6 @@ "warning_id": 1 } ], - "gas_remaining": "7936" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/mappair.scilla.gold b/tests/checker/good/gold/mappair.scilla.gold index 0d97fec46..51856f44d 100644 --- a/tests/checker/good/gold/mappair.scilla.gold +++ b/tests/checker/good/gold/mappair.scilla.gold @@ -157,6 +157,6 @@ "warning_id": 1 } ], - "gas_remaining": "7547" + "gas_remaining": "7907" } diff --git a/tests/checker/good/gold/missing-accepts.scilla.gold b/tests/checker/good/gold/missing-accepts.scilla.gold index 4e67d2476..8c04f939f 100644 --- a/tests/checker/good/gold/missing-accepts.scilla.gold +++ b/tests/checker/good/gold/missing-accepts.scilla.gold @@ -83,6 +83,6 @@ "warning_id": 1 } ], - "gas_remaining": "7976" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/multiple-accepts.scilla.gold b/tests/checker/good/gold/multiple-accepts.scilla.gold index 8dd781e6c..2262de52d 100644 --- a/tests/checker/good/gold/multiple-accepts.scilla.gold +++ b/tests/checker/good/gold/multiple-accepts.scilla.gold @@ -309,6 +309,6 @@ "warning_id": 1 } ], - "gas_remaining": "7705" + "gas_remaining": "7941" } diff --git a/tests/checker/good/gold/multiple-msgs.scilla.gold b/tests/checker/good/gold/multiple-msgs.scilla.gold index 9ff54994d..2aa77def6 100644 --- a/tests/checker/good/gold/multiple-msgs.scilla.gold +++ b/tests/checker/good/gold/multiple-msgs.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7822" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/namespace1.scilla.gold b/tests/checker/good/gold/namespace1.scilla.gold index e77fdf293..7160ecc3b 100644 --- a/tests/checker/good/gold/namespace1.scilla.gold +++ b/tests/checker/good/gold/namespace1.scilla.gold @@ -95,6 +95,6 @@ "warning_id": 1 } ], - "gas_remaining": "7904" + "gas_remaining": "7917" } diff --git a/tests/checker/good/gold/namespace2.scilla.gold b/tests/checker/good/gold/namespace2.scilla.gold index 7362c4d40..8c22c07e4 100644 --- a/tests/checker/good/gold/namespace2.scilla.gold +++ b/tests/checker/good/gold/namespace2.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7906" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/namespace3.scilla.gold b/tests/checker/good/gold/namespace3.scilla.gold index 16a11a4df..5a7ca3624 100644 --- a/tests/checker/good/gold/namespace3.scilla.gold +++ b/tests/checker/good/gold/namespace3.scilla.gold @@ -124,6 +124,6 @@ "warning_id": 1 } ], - "gas_remaining": "7888" + "gas_remaining": "7917" } diff --git a/tests/checker/good/gold/nested-comments.scilla.gold b/tests/checker/good/gold/nested-comments.scilla.gold index b10786ea5..731e6dd63 100644 --- a/tests/checker/good/gold/nested-comments.scilla.gold +++ b/tests/checker/good/gold/nested-comments.scilla.gold @@ -57,6 +57,6 @@ "warning_id": 1 } ], - "gas_remaining": "7971" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/nonfungible-token.scilla.gold b/tests/checker/good/gold/nonfungible-token.scilla.gold index f482ee652..3d08bddb6 100644 --- a/tests/checker/good/gold/nonfungible-token.scilla.gold +++ b/tests/checker/good/gold/nonfungible-token.scilla.gold @@ -342,6 +342,6 @@ "warning_id": 1 } ], - "gas_remaining": "6462" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/one-accept.scilla.gold b/tests/checker/good/gold/one-accept.scilla.gold index 4ab867100..2fb22a1d4 100644 --- a/tests/checker/good/gold/one-accept.scilla.gold +++ b/tests/checker/good/gold/one-accept.scilla.gold @@ -65,6 +65,6 @@ ] }, "warnings": [], - "gas_remaining": "7919" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/one-msg.scilla.gold b/tests/checker/good/gold/one-msg.scilla.gold index d951ddfc2..fa277cea4 100644 --- a/tests/checker/good/gold/one-msg.scilla.gold +++ b/tests/checker/good/gold/one-msg.scilla.gold @@ -67,6 +67,6 @@ "warning_id": 1 } ], - "gas_remaining": "7815" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/one-msg1.scilla.gold b/tests/checker/good/gold/one-msg1.scilla.gold index d8e37bb7d..b083e1194 100644 --- a/tests/checker/good/gold/one-msg1.scilla.gold +++ b/tests/checker/good/gold/one-msg1.scilla.gold @@ -77,6 +77,6 @@ "warning_id": 1 } ], - "gas_remaining": "7794" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/one-msg2.scilla.gold b/tests/checker/good/gold/one-msg2.scilla.gold index cb701fc50..5c14a65e6 100644 --- a/tests/checker/good/gold/one-msg2.scilla.gold +++ b/tests/checker/good/gold/one-msg2.scilla.gold @@ -72,6 +72,6 @@ "warning_id": 1 } ], - "gas_remaining": "7804" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/one-msg3.scilla.gold b/tests/checker/good/gold/one-msg3.scilla.gold index a56632e02..14104976b 100644 --- a/tests/checker/good/gold/one-msg3.scilla.gold +++ b/tests/checker/good/gold/one-msg3.scilla.gold @@ -82,6 +82,6 @@ "warning_id": 1 } ], - "gas_remaining": "7813" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/one-transition-accepts.scilla.gold b/tests/checker/good/gold/one-transition-accepts.scilla.gold index d249b5a25..6f1c87cdb 100644 --- a/tests/checker/good/gold/one-transition-accepts.scilla.gold +++ b/tests/checker/good/gold/one-transition-accepts.scilla.gold @@ -76,6 +76,6 @@ "warning_id": 3 } ], - "gas_remaining": "7978" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/one-transition-might-accept.scilla.gold b/tests/checker/good/gold/one-transition-might-accept.scilla.gold index 600c13441..b823846ec 100644 --- a/tests/checker/good/gold/one-transition-might-accept.scilla.gold +++ b/tests/checker/good/gold/one-transition-might-accept.scilla.gold @@ -69,6 +69,6 @@ "warning_id": 3 } ], - "gas_remaining": "7964" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/ping.scilla.gold b/tests/checker/good/gold/ping.scilla.gold index 84d74fc15..2475c8ef2 100644 --- a/tests/checker/good/gold/ping.scilla.gold +++ b/tests/checker/good/gold/ping.scilla.gold @@ -76,6 +76,6 @@ "warning_id": 1 } ], - "gas_remaining": "7856" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/polymorphic_address.scilla.gold b/tests/checker/good/gold/polymorphic_address.scilla.gold index 86c3f20e3..2c2525ac6 100644 --- a/tests/checker/good/gold/polymorphic_address.scilla.gold +++ b/tests/checker/good/gold/polymorphic_address.scilla.gold @@ -117,6 +117,6 @@ "warning_id": 1 } ], - "gas_remaining": "7823" + "gas_remaining": "7916" } diff --git a/tests/checker/good/gold/pong.scilla.gold b/tests/checker/good/gold/pong.scilla.gold index bc0fd4a95..859563013 100644 --- a/tests/checker/good/gold/pong.scilla.gold +++ b/tests/checker/good/gold/pong.scilla.gold @@ -76,6 +76,6 @@ "warning_id": 1 } ], - "gas_remaining": "7856" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/remote_state_reads.scilla.gold b/tests/checker/good/gold/remote_state_reads.scilla.gold index 49affff73..fc56a766e 100644 --- a/tests/checker/good/gold/remote_state_reads.scilla.gold +++ b/tests/checker/good/gold/remote_state_reads.scilla.gold @@ -592,6 +592,6 @@ "warning_id": 1 } ], - "gas_remaining": "7157" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/remote_state_reads_2.scilla.gold b/tests/checker/good/gold/remote_state_reads_2.scilla.gold index c8e4c7de8..2dd5f14d4 100644 --- a/tests/checker/good/gold/remote_state_reads_2.scilla.gold +++ b/tests/checker/good/gold/remote_state_reads_2.scilla.gold @@ -156,6 +156,6 @@ "warning_id": 1 } ], - "gas_remaining": "7750" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/schnorr.scilla.gold b/tests/checker/good/gold/schnorr.scilla.gold index 44182db06..324fe7048 100644 --- a/tests/checker/good/gold/schnorr.scilla.gold +++ b/tests/checker/good/gold/schnorr.scilla.gold @@ -111,6 +111,6 @@ "warning_id": 1 } ], - "gas_remaining": "7874" + "gas_remaining": "7997" } diff --git a/tests/checker/good/gold/shadow_import.scilla.gold b/tests/checker/good/gold/shadow_import.scilla.gold index 26e44f511..7de694293 100644 --- a/tests/checker/good/gold/shadow_import.scilla.gold +++ b/tests/checker/good/gold/shadow_import.scilla.gold @@ -86,6 +86,6 @@ "warning_id": 1 } ], - "gas_remaining": "7856" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/shadowwarn1.scilla.gold b/tests/checker/good/gold/shadowwarn1.scilla.gold index 2eccffdd2..5ece7395b 100644 --- a/tests/checker/good/gold/shadowwarn1.scilla.gold +++ b/tests/checker/good/gold/shadowwarn1.scilla.gold @@ -92,6 +92,6 @@ "warning_id": 1 } ], - "gas_remaining": "7989" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/shadowwarn2.scilla.gold b/tests/checker/good/gold/shadowwarn2.scilla.gold index e3d0088d3..4312a8957 100644 --- a/tests/checker/good/gold/shadowwarn2.scilla.gold +++ b/tests/checker/good/gold/shadowwarn2.scilla.gold @@ -129,6 +129,6 @@ "warning_id": 1 } ], - "gas_remaining": "7982" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/shadowwarn3.scilla.gold b/tests/checker/good/gold/shadowwarn3.scilla.gold index 97d0cf286..22ca7cadc 100644 --- a/tests/checker/good/gold/shadowwarn3.scilla.gold +++ b/tests/checker/good/gold/shadowwarn3.scilla.gold @@ -129,6 +129,6 @@ "warning_id": 1 } ], - "gas_remaining": "7965" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/shogi.scilla.gold b/tests/checker/good/gold/shogi.scilla.gold index 0e67681a4..1c2b0b558 100644 --- a/tests/checker/good/gold/shogi.scilla.gold +++ b/tests/checker/good/gold/shogi.scilla.gold @@ -245,6 +245,6 @@ "warning_id": 1 } ], - "gas_remaining": "4597" + "gas_remaining": "7915" } diff --git a/tests/checker/good/gold/shogi_proc.scilla.gold b/tests/checker/good/gold/shogi_proc.scilla.gold index 9301fe455..0c40b8048 100644 --- a/tests/checker/good/gold/shogi_proc.scilla.gold +++ b/tests/checker/good/gold/shogi_proc.scilla.gold @@ -297,6 +297,6 @@ "warning_id": 1 } ], - "gas_remaining": "4797" + "gas_remaining": "7915" } diff --git a/tests/checker/good/gold/simple-dex-remote-reads.scilla.gold b/tests/checker/good/gold/simple-dex-remote-reads.scilla.gold index f46deb83d..cbb721612 100644 --- a/tests/checker/good/gold/simple-dex-remote-reads.scilla.gold +++ b/tests/checker/good/gold/simple-dex-remote-reads.scilla.gold @@ -294,6 +294,6 @@ "warning_id": 1 } ], - "gas_remaining": "6577" + "gas_remaining": "7941" } diff --git a/tests/checker/good/gold/simple-dex-shadowwarn.scilla.gold b/tests/checker/good/gold/simple-dex-shadowwarn.scilla.gold index f95517bff..f64845107 100644 --- a/tests/checker/good/gold/simple-dex-shadowwarn.scilla.gold +++ b/tests/checker/good/gold/simple-dex-shadowwarn.scilla.gold @@ -201,6 +201,6 @@ "warning_id": 1 } ], - "gas_remaining": "6876" + "gas_remaining": "7993" } diff --git a/tests/checker/good/gold/simple-dex.scilla.gold b/tests/checker/good/gold/simple-dex.scilla.gold index 6e91a2140..7a4ab3385 100644 --- a/tests/checker/good/gold/simple-dex.scilla.gold +++ b/tests/checker/good/gold/simple-dex.scilla.gold @@ -191,6 +191,6 @@ "warning_id": 1 } ], - "gas_remaining": "6874" + "gas_remaining": "7993" } diff --git a/tests/checker/good/gold/type_casts.scilla.gold b/tests/checker/good/gold/type_casts.scilla.gold index a2b5941b4..ed176c4dc 100644 --- a/tests/checker/good/gold/type_casts.scilla.gold +++ b/tests/checker/good/gold/type_casts.scilla.gold @@ -382,6 +382,6 @@ "warning_id": 1 } ], - "gas_remaining": "7314" + "gas_remaining": "7999" } diff --git a/tests/checker/good/gold/ud-proxy.scilla.gold b/tests/checker/good/gold/ud-proxy.scilla.gold index d809c1b6b..946120285 100644 --- a/tests/checker/good/gold/ud-proxy.scilla.gold +++ b/tests/checker/good/gold/ud-proxy.scilla.gold @@ -114,6 +114,6 @@ "warning_id": 1 } ], - "gas_remaining": "7748" + "gas_remaining": "7918" } diff --git a/tests/checker/good/gold/ud-registry.scilla.gold b/tests/checker/good/gold/ud-registry.scilla.gold index 6fd669a1b..3aaf987a8 100644 --- a/tests/checker/good/gold/ud-registry.scilla.gold +++ b/tests/checker/good/gold/ud-registry.scilla.gold @@ -245,6 +245,6 @@ "warning_id": 3 } ], - "gas_remaining": "6429" + "gas_remaining": "7916" } diff --git a/tests/checker/good/gold/wallet.scilla.gold b/tests/checker/good/gold/wallet.scilla.gold index cf5c71465..5be8a7648 100644 --- a/tests/checker/good/gold/wallet.scilla.gold +++ b/tests/checker/good/gold/wallet.scilla.gold @@ -375,6 +375,6 @@ "warning_id": 1 } ], - "gas_remaining": "5731" + "gas_remaining": "7856" } diff --git a/tests/checker/good/gold/wallet_2.scilla.gold b/tests/checker/good/gold/wallet_2.scilla.gold index 5be76e195..33368fd20 100644 --- a/tests/checker/good/gold/wallet_2.scilla.gold +++ b/tests/checker/good/gold/wallet_2.scilla.gold @@ -231,6 +231,6 @@ "warning_id": 3 } ], - "gas_remaining": "6088" + "gas_remaining": "7856" } diff --git a/tests/checker/good/gold/zil-game.scilla.gold b/tests/checker/good/gold/zil-game.scilla.gold index 050a2ad91..2f213779a 100644 --- a/tests/checker/good/gold/zil-game.scilla.gold +++ b/tests/checker/good/gold/zil-game.scilla.gold @@ -117,6 +117,6 @@ "warning_id": 1 } ], - "gas_remaining": "7160" + "gas_remaining": "7999" } diff --git a/tests/runner/Polynetwork/output_1.json b/tests/runner/Polynetwork/output_1.json index a2445adb0..66022acee 100644 --- a/tests/runner/Polynetwork/output_1.json +++ b/tests/runner/Polynetwork/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "2984", + "gas_remaining": "3681", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/Polynetwork/output_2.json b/tests/runner/Polynetwork/output_2.json index 7d7a2c1ff..7646d8f2c 100644 --- a/tests/runner/Polynetwork/output_2.json +++ b/tests/runner/Polynetwork/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "4621", + "gas_remaining": "5212", "_accepted": "false", "messages": [ { diff --git a/tests/runner/Polynetwork/output_25.json b/tests/runner/Polynetwork/output_25.json index 9063f902f..aecfa6f54 100644 --- a/tests/runner/Polynetwork/output_25.json +++ b/tests/runner/Polynetwork/output_25.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7198", + "gas_remaining": "7895", "errors": [ { "error_message": diff --git a/tests/runner/Polynetwork/output_26.json b/tests/runner/Polynetwork/output_26.json index f050ce6b7..9062ecbf9 100644 --- a/tests/runner/Polynetwork/output_26.json +++ b/tests/runner/Polynetwork/output_26.json @@ -1,5 +1,5 @@ { - "gas_remaining": "4685", + "gas_remaining": "5276", "errors": [ { "error_message": diff --git a/tests/runner/Polynetwork/output_27.json b/tests/runner/Polynetwork/output_27.json index cf502518c..113287e5e 100644 --- a/tests/runner/Polynetwork/output_27.json +++ b/tests/runner/Polynetwork/output_27.json @@ -1,5 +1,5 @@ { - "gas_remaining": "3642", + "gas_remaining": "4613", "errors": [ { "error_message": diff --git a/tests/runner/Polynetwork/output_28.json b/tests/runner/Polynetwork/output_28.json index 340dfb9a1..faecc2749 100644 --- a/tests/runner/Polynetwork/output_28.json +++ b/tests/runner/Polynetwork/output_28.json @@ -1,5 +1,5 @@ { - "gas_remaining": "2318", + "gas_remaining": "3793", "errors": [ { "error_message": diff --git a/tests/runner/Polynetwork/output_3.json b/tests/runner/Polynetwork/output_3.json index da43ef7dc..4ec060170 100644 --- a/tests/runner/Polynetwork/output_3.json +++ b/tests/runner/Polynetwork/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "1843", + "gas_remaining": "2813", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/Polynetwork/output_4.json b/tests/runner/Polynetwork/output_4.json index c3cb0901e..94e15f3dc 100644 --- a/tests/runner/Polynetwork/output_4.json +++ b/tests/runner/Polynetwork/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "2254", + "gas_remaining": "3730", "_accepted": "false", "messages": [ { diff --git a/tests/runner/UintParam/output_1.json b/tests/runner/UintParam/output_1.json index 170980c7e..6fb8bff24 100644 --- a/tests/runner/UintParam/output_1.json +++ b/tests/runner/UintParam/output_1.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7962", + "gas_remaining": "7999", "errors": [ { "error_message": "Invalid Uint128 value -1 in JSON", diff --git a/tests/runner/UintParam/output_2.json b/tests/runner/UintParam/output_2.json index 029e72da2..8cf4465ce 100644 --- a/tests/runner/UintParam/output_2.json +++ b/tests/runner/UintParam/output_2.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7962", + "gas_remaining": "7999", "errors": [ { "error_message": "Invalid Uint128 value -1 in JSON", diff --git a/tests/runner/UintParam/output_3.json b/tests/runner/UintParam/output_3.json index d723693c1..079f8c9ca 100644 --- a/tests/runner/UintParam/output_3.json +++ b/tests/runner/UintParam/output_3.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7962", + "gas_remaining": "7999", "errors": [ { "error_message": "Invalid Uint256 value -1 in JSON", diff --git a/tests/runner/addfunds/output_1.json b/tests/runner/addfunds/output_1.json index 74f931c16..12b77fbef 100644 --- a/tests/runner/addfunds/output_1.json +++ b/tests/runner/addfunds/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7944", + "gas_remaining": "7988", "_accepted": "true", "messages": [], "states": [ { "vname": "_balance", "type": "Uint128", "value": "100" } ], diff --git a/tests/runner/addfunds_proxy/output_1.json b/tests/runner/addfunds_proxy/output_1.json index 3eed58bca..5af9ca5ac 100644 --- a/tests/runner/addfunds_proxy/output_1.json +++ b/tests/runner/addfunds_proxy/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7951", + "gas_remaining": "7975", "_accepted": "true", "messages": [ { diff --git a/tests/runner/addfunds_proxy/output_2.json b/tests/runner/addfunds_proxy/output_2.json index 1f7e3e90e..1bfc2608b 100644 --- a/tests/runner/addfunds_proxy/output_2.json +++ b/tests/runner/addfunds_proxy/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7958", + "gas_remaining": "7983", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_1.json b/tests/runner/address_eq_test/output_1.json index de63511ba..f45d6e61c 100644 --- a/tests/runner/address_eq_test/output_1.json +++ b/tests/runner/address_eq_test/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7930", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_10.json b/tests/runner/address_eq_test/output_10.json index 706c63e72..0a1144228 100644 --- a/tests/runner/address_eq_test/output_10.json +++ b/tests/runner/address_eq_test/output_10.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7986", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_11.json b/tests/runner/address_eq_test/output_11.json index 0d5e3570a..aa1366057 100644 --- a/tests/runner/address_eq_test/output_11.json +++ b/tests/runner/address_eq_test/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7935", + "gas_remaining": "7977", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_2.json b/tests/runner/address_eq_test/output_2.json index 12887577d..0411c3c63 100644 --- a/tests/runner/address_eq_test/output_2.json +++ b/tests/runner/address_eq_test/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7930", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_3.json b/tests/runner/address_eq_test/output_3.json index 84e850d77..491d4d112 100644 --- a/tests/runner/address_eq_test/output_3.json +++ b/tests/runner/address_eq_test/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7931", + "gas_remaining": "7993", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_4.json b/tests/runner/address_eq_test/output_4.json index 84e850d77..f45d6e61c 100644 --- a/tests/runner/address_eq_test/output_4.json +++ b/tests/runner/address_eq_test/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7931", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_5.json b/tests/runner/address_eq_test/output_5.json index 84e850d77..f45d6e61c 100644 --- a/tests/runner/address_eq_test/output_5.json +++ b/tests/runner/address_eq_test/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7931", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_6.json b/tests/runner/address_eq_test/output_6.json index d87a22297..6e762cf62 100644 --- a/tests/runner/address_eq_test/output_6.json +++ b/tests/runner/address_eq_test/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7990", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_7.json b/tests/runner/address_eq_test/output_7.json index 26c3dd08f..636118f8c 100644 --- a/tests/runner/address_eq_test/output_7.json +++ b/tests/runner/address_eq_test/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7945", + "gas_remaining": "7987", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_8.json b/tests/runner/address_eq_test/output_8.json index b85db5dbf..12c4a8158 100644 --- a/tests/runner/address_eq_test/output_8.json +++ b/tests/runner/address_eq_test/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7923", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_eq_test/output_9.json b/tests/runner/address_eq_test/output_9.json index 7c980d4cc..cad300afb 100644 --- a/tests/runner/address_eq_test/output_9.json +++ b/tests/runner/address_eq_test/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7918", + "gas_remaining": "7980", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_list_traversal/output_1.json b/tests/runner/address_list_traversal/output_1.json index 667e96574..0a4b9a604 100644 --- a/tests/runner/address_list_traversal/output_1.json +++ b/tests/runner/address_list_traversal/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7896", + "gas_remaining": "7977", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_list_traversal/output_2.json b/tests/runner/address_list_traversal/output_2.json index 23cbeadfc..f36a0d800 100644 --- a/tests/runner/address_list_traversal/output_2.json +++ b/tests/runner/address_list_traversal/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7901", + "gas_remaining": "7981", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/address_list_traversal/output_3.json b/tests/runner/address_list_traversal/output_3.json index 05ea58408..4443e0d49 100644 --- a/tests/runner/address_list_traversal/output_3.json +++ b/tests/runner/address_list_traversal/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7891", + "gas_remaining": "7972", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/auction/output_1.json b/tests/runner/auction/output_1.json index b1adea0bb..41d2db599 100644 --- a/tests/runner/auction/output_1.json +++ b/tests/runner/auction/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7915", + "gas_remaining": "7938", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/auction/output_2.json b/tests/runner/auction/output_2.json index 2027154b2..fe641a048 100644 --- a/tests/runner/auction/output_2.json +++ b/tests/runner/auction/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7910", + "gas_remaining": "7933", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/auction/output_3.json b/tests/runner/auction/output_3.json index 16b17eea9..98e9f42e4 100644 --- a/tests/runner/auction/output_3.json +++ b/tests/runner/auction/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7920", + "gas_remaining": "7943", "_accepted": "false", "messages": [ { diff --git a/tests/runner/auction/output_4.json b/tests/runner/auction/output_4.json index 7f26ef9b7..49a4fd8b1 100644 --- a/tests/runner/auction/output_4.json +++ b/tests/runner/auction/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7923", + "gas_remaining": "7946", "_accepted": "false", "messages": [ { diff --git a/tests/runner/auction/output_5.json b/tests/runner/auction/output_5.json index dae5430ec..d93490929 100644 --- a/tests/runner/auction/output_5.json +++ b/tests/runner/auction/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7923", + "gas_remaining": "7946", "_accepted": "false", "messages": [ { diff --git a/tests/runner/auction/output_6.json b/tests/runner/auction/output_6.json index 34b1c2222..afc8674b5 100644 --- a/tests/runner/auction/output_6.json +++ b/tests/runner/auction/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7936", + "gas_remaining": "7959", "_accepted": "false", "messages": [ { diff --git a/tests/runner/auction/output_7.json b/tests/runner/auction/output_7.json index 3e08fa81b..8784ad574 100644 --- a/tests/runner/auction/output_7.json +++ b/tests/runner/auction/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7936", + "gas_remaining": "7959", "_accepted": "false", "messages": [ { diff --git a/tests/runner/auction/output_8.json b/tests/runner/auction/output_8.json index 6ec3a16a7..96c6854cf 100644 --- a/tests/runner/auction/output_8.json +++ b/tests/runner/auction/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7919", + "gas_remaining": "7943", "_accepted": "false", "messages": [ { diff --git a/tests/runner/bookstore/output_1.json b/tests/runner/bookstore/output_1.json index 5f1ab8102..5ad72e18a 100644 --- a/tests/runner/bookstore/output_1.json +++ b/tests/runner/bookstore/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7904", + "gas_remaining": "7975", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_10.json b/tests/runner/bookstore/output_10.json index 35094a052..b3acb46b3 100644 --- a/tests/runner/bookstore/output_10.json +++ b/tests/runner/bookstore/output_10.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7906", + "gas_remaining": "7973", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_11.json b/tests/runner/bookstore/output_11.json index f44e9d9b1..e5f0e2be5 100644 --- a/tests/runner/bookstore/output_11.json +++ b/tests/runner/bookstore/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7933", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_12.json b/tests/runner/bookstore/output_12.json index 1441baae7..277cc82d1 100644 --- a/tests/runner/bookstore/output_12.json +++ b/tests/runner/bookstore/output_12.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7912", + "gas_remaining": "7979", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_2.json b/tests/runner/bookstore/output_2.json index f8100551a..2adf7c458 100644 --- a/tests/runner/bookstore/output_2.json +++ b/tests/runner/bookstore/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7908", + "gas_remaining": "7979", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_3.json b/tests/runner/bookstore/output_3.json index fb911aec4..d011910ea 100644 --- a/tests/runner/bookstore/output_3.json +++ b/tests/runner/bookstore/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7907", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_4.json b/tests/runner/bookstore/output_4.json index ac58601e9..ca8c285d9 100644 --- a/tests/runner/bookstore/output_4.json +++ b/tests/runner/bookstore/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7906", + "gas_remaining": "7973", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_5.json b/tests/runner/bookstore/output_5.json index dc7857992..a9348a756 100644 --- a/tests/runner/bookstore/output_5.json +++ b/tests/runner/bookstore/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7940", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_6.json b/tests/runner/bookstore/output_6.json index 82243117b..d6b110a43 100644 --- a/tests/runner/bookstore/output_6.json +++ b/tests/runner/bookstore/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7911", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_7.json b/tests/runner/bookstore/output_7.json index fbb3acbc5..d6cdb4e2c 100644 --- a/tests/runner/bookstore/output_7.json +++ b/tests/runner/bookstore/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7940", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_8.json b/tests/runner/bookstore/output_8.json index 103662824..49349663c 100644 --- a/tests/runner/bookstore/output_8.json +++ b/tests/runner/bookstore/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7913", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/bookstore/output_9.json b/tests/runner/bookstore/output_9.json index 7215c5c17..e6af392ee 100644 --- a/tests/runner/bookstore/output_9.json +++ b/tests/runner/bookstore/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7912", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/cfinvoke/output_1.json b/tests/runner/cfinvoke/output_1.json index 7db30cfed..b5d471a3d 100644 --- a/tests/runner/cfinvoke/output_1.json +++ b/tests/runner/cfinvoke/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7939", + "gas_remaining": "7977", "_accepted": "true", "messages": [ { diff --git a/tests/runner/cfinvoke/output_2.json b/tests/runner/cfinvoke/output_2.json index af57409a3..986f69f35 100644 --- a/tests/runner/cfinvoke/output_2.json +++ b/tests/runner/cfinvoke/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7936", + "gas_remaining": "7974", "_accepted": "false", "messages": [ { diff --git a/tests/runner/cfinvoke/output_3.json b/tests/runner/cfinvoke/output_3.json index 896934473..5e7800f71 100644 --- a/tests/runner/cfinvoke/output_3.json +++ b/tests/runner/cfinvoke/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7933", + "gas_remaining": "7971", "_accepted": "false", "messages": [ { diff --git a/tests/runner/cfinvoke/output_4.json b/tests/runner/cfinvoke/output_4.json index 5b67f9798..02d88d74c 100644 --- a/tests/runner/cfinvoke/output_4.json +++ b/tests/runner/cfinvoke/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7959", + "gas_remaining": "7982", "_accepted": "true", "messages": [ { diff --git a/tests/runner/chain-call-balance-1/output_1.json b/tests/runner/chain-call-balance-1/output_1.json index 8da391f92..0492de811 100644 --- a/tests/runner/chain-call-balance-1/output_1.json +++ b/tests/runner/chain-call-balance-1/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7915", + "gas_remaining": "7977", "_accepted": "true", "messages": [ { diff --git a/tests/runner/chain-call-balance-2/output_1.json b/tests/runner/chain-call-balance-2/output_1.json index cffa10471..09623f649 100644 --- a/tests/runner/chain-call-balance-2/output_1.json +++ b/tests/runner/chain-call-balance-2/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7939", + "gas_remaining": "7982", "_accepted": "true", "messages": [ { diff --git a/tests/runner/chain-call-balance-3/output_1.json b/tests/runner/chain-call-balance-3/output_1.json index 9a36ba0ce..24faa3e37 100644 --- a/tests/runner/chain-call-balance-3/output_1.json +++ b/tests/runner/chain-call-balance-3/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7959", + "gas_remaining": "7982", "_accepted": "false", "messages": [ { diff --git a/tests/runner/crowdfunding/output_1.json b/tests/runner/crowdfunding/output_1.json index 138cf4e11..298262e3e 100644 --- a/tests/runner/crowdfunding/output_1.json +++ b/tests/runner/crowdfunding/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7936", + "gas_remaining": "7959", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding/output_2.json b/tests/runner/crowdfunding/output_2.json index f1b435bc1..dbda4e0f7 100644 --- a/tests/runner/crowdfunding/output_2.json +++ b/tests/runner/crowdfunding/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7927", + "gas_remaining": "7950", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding/output_3.json b/tests/runner/crowdfunding/output_3.json index 57d49fb33..6b330ba84 100644 --- a/tests/runner/crowdfunding/output_3.json +++ b/tests/runner/crowdfunding/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7932", + "gas_remaining": "7955", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding/output_4.json b/tests/runner/crowdfunding/output_4.json index 9ef4ce1dc..32ffdcca2 100644 --- a/tests/runner/crowdfunding/output_4.json +++ b/tests/runner/crowdfunding/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7949", + "gas_remaining": "7972", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding/output_5.json b/tests/runner/crowdfunding/output_5.json index d3e683af6..c432f7f33 100644 --- a/tests/runner/crowdfunding/output_5.json +++ b/tests/runner/crowdfunding/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7911", + "gas_remaining": "7935", "_accepted": "false", "messages": [ { diff --git a/tests/runner/crowdfunding/output_6.json b/tests/runner/crowdfunding/output_6.json index 7a9ba7457..1e0741671 100644 --- a/tests/runner/crowdfunding/output_6.json +++ b/tests/runner/crowdfunding/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7927", + "gas_remaining": "7950", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding_proc/output_1.json b/tests/runner/crowdfunding_proc/output_1.json index 2afd88ab2..d30f1afdf 100644 --- a/tests/runner/crowdfunding_proc/output_1.json +++ b/tests/runner/crowdfunding_proc/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7938", + "gas_remaining": "7961", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding_proc/output_2.json b/tests/runner/crowdfunding_proc/output_2.json index 02945e645..dd4180b7e 100644 --- a/tests/runner/crowdfunding_proc/output_2.json +++ b/tests/runner/crowdfunding_proc/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7938", + "gas_remaining": "7961", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding_proc/output_3.json b/tests/runner/crowdfunding_proc/output_3.json index 08872a443..acac09d96 100644 --- a/tests/runner/crowdfunding_proc/output_3.json +++ b/tests/runner/crowdfunding_proc/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7940", + "gas_remaining": "7963", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding_proc/output_4.json b/tests/runner/crowdfunding_proc/output_4.json index e84271688..deb001992 100644 --- a/tests/runner/crowdfunding_proc/output_4.json +++ b/tests/runner/crowdfunding_proc/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7947", + "gas_remaining": "7971", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/crowdfunding_proc/output_5.json b/tests/runner/crowdfunding_proc/output_5.json index 188fdcf69..ffe682746 100644 --- a/tests/runner/crowdfunding_proc/output_5.json +++ b/tests/runner/crowdfunding_proc/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7919", + "gas_remaining": "7943", "_accepted": "false", "messages": [ { diff --git a/tests/runner/crowdfunding_proc/output_6.json b/tests/runner/crowdfunding_proc/output_6.json index cca1c9f89..d582a7c03 100644 --- a/tests/runner/crowdfunding_proc/output_6.json +++ b/tests/runner/crowdfunding_proc/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7938", + "gas_remaining": "7961", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/earmarked-coin/output_1.json b/tests/runner/earmarked-coin/output_1.json index 82a00ccc2..901451761 100644 --- a/tests/runner/earmarked-coin/output_1.json +++ b/tests/runner/earmarked-coin/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7928", + "gas_remaining": "7970", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/earmarked-coin/output_2.json b/tests/runner/earmarked-coin/output_2.json index cf51d996a..30ad655cf 100644 --- a/tests/runner/earmarked-coin/output_2.json +++ b/tests/runner/earmarked-coin/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7907", + "gas_remaining": "7952", "_accepted": "false", "messages": [ { diff --git a/tests/runner/earmarked-coin/output_3.json b/tests/runner/earmarked-coin/output_3.json index c430528bd..aade9fd12 100644 --- a/tests/runner/earmarked-coin/output_3.json +++ b/tests/runner/earmarked-coin/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7923", + "gas_remaining": "7969", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/earmarked-coin/output_4.json b/tests/runner/earmarked-coin/output_4.json index 31d545420..dc222a588 100644 --- a/tests/runner/earmarked-coin/output_4.json +++ b/tests/runner/earmarked-coin/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7930", + "gas_remaining": "7976", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/earmarked-coin/output_5.json b/tests/runner/earmarked-coin/output_5.json index d840711f9..70e77082f 100644 --- a/tests/runner/earmarked-coin/output_5.json +++ b/tests/runner/earmarked-coin/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7931", + "gas_remaining": "7955", "_accepted": "false", "messages": [ { diff --git a/tests/runner/earmarked-coin/output_6.json b/tests/runner/earmarked-coin/output_6.json index 5883f31d4..dc222a588 100644 --- a/tests/runner/earmarked-coin/output_6.json +++ b/tests/runner/earmarked-coin/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7976", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/ecdsa/output_1.json b/tests/runner/ecdsa/output_1.json index f5d484808..0580525cb 100644 --- a/tests/runner/ecdsa/output_1.json +++ b/tests/runner/ecdsa/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7862", + "gas_remaining": "7936", "_accepted": "false", "messages": [ { diff --git a/tests/runner/ecdsa/output_2.json b/tests/runner/ecdsa/output_2.json index 2b0b5fd02..62e9f3776 100644 --- a/tests/runner/ecdsa/output_2.json +++ b/tests/runner/ecdsa/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7861", + "gas_remaining": "7935", "_accepted": "false", "messages": [ { diff --git a/tests/runner/ecdsa/output_3.json b/tests/runner/ecdsa/output_3.json index f5d484808..0580525cb 100644 --- a/tests/runner/ecdsa/output_3.json +++ b/tests/runner/ecdsa/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7862", + "gas_remaining": "7936", "_accepted": "false", "messages": [ { diff --git a/tests/runner/ecdsa/output_4.json b/tests/runner/ecdsa/output_4.json index 3cc1124f0..ccaf8d573 100644 --- a/tests/runner/ecdsa/output_4.json +++ b/tests/runner/ecdsa/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7867", + "gas_remaining": "7935", "_accepted": "false", "messages": [ { diff --git a/tests/runner/empty/output_1.json b/tests/runner/empty/output_1.json index 565d77e28..e3782ef84 100644 --- a/tests/runner/empty/output_1.json +++ b/tests/runner/empty/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7916", + "gas_remaining": "7939", "_accepted": "false", "messages": [], "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/exception-example/output_1.json b/tests/runner/exception-example/output_1.json index d3da0ad34..17deebeef 100644 --- a/tests/runner/exception-example/output_1.json +++ b/tests/runner/exception-example/output_1.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7950", + "gas_remaining": "7988", "errors": [ { "error_message": diff --git a/tests/runner/exception-example/output_2.json b/tests/runner/exception-example/output_2.json index e538da621..2463d056a 100644 --- a/tests/runner/exception-example/output_2.json +++ b/tests/runner/exception-example/output_2.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7960", + "gas_remaining": "7998", "errors": [ { "error_message": "Exception thrown", diff --git a/tests/runner/fungible-token/output_0.json b/tests/runner/fungible-token/output_0.json index 86239f096..ac82603d2 100644 --- a/tests/runner/fungible-token/output_0.json +++ b/tests/runner/fungible-token/output_0.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7926", + "gas_remaining": "7969", "_accepted": "false", "messages": [ { diff --git a/tests/runner/fungible-token/output_1.json b/tests/runner/fungible-token/output_1.json index 4cd9d2f44..3d84a8ba4 100644 --- a/tests/runner/fungible-token/output_1.json +++ b/tests/runner/fungible-token/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7971", "_accepted": "false", "messages": [ { diff --git a/tests/runner/fungible-token/output_2.json b/tests/runner/fungible-token/output_2.json index ffc4944c0..e1a4ef169 100644 --- a/tests/runner/fungible-token/output_2.json +++ b/tests/runner/fungible-token/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7900", + "gas_remaining": "7956", "_accepted": "false", "messages": [ { diff --git a/tests/runner/fungible-token/output_3.json b/tests/runner/fungible-token/output_3.json index 386962d61..da8d18822 100644 --- a/tests/runner/fungible-token/output_3.json +++ b/tests/runner/fungible-token/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7905", + "gas_remaining": "7961", "_accepted": "false", "messages": [ { diff --git a/tests/runner/fungible-token/output_4.json b/tests/runner/fungible-token/output_4.json index 3f2d71066..be1512e34 100644 --- a/tests/runner/fungible-token/output_4.json +++ b/tests/runner/fungible-token/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7908", + "gas_remaining": "7964", "_accepted": "false", "messages": [ { diff --git a/tests/runner/fungible-token/output_5.json b/tests/runner/fungible-token/output_5.json index 43f3744b1..b2cab9153 100644 --- a/tests/runner/fungible-token/output_5.json +++ b/tests/runner/fungible-token/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7908", + "gas_remaining": "7964", "_accepted": "false", "messages": [ { diff --git a/tests/runner/fungible-token/output_6.json b/tests/runner/fungible-token/output_6.json index 7115fd0bb..684feadfc 100644 --- a/tests/runner/fungible-token/output_6.json +++ b/tests/runner/fungible-token/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7874", + "gas_remaining": "7948", "_accepted": "false", "messages": [ { diff --git a/tests/runner/fungible-token/output_7.json b/tests/runner/fungible-token/output_7.json index 33ffbfb72..697213229 100644 --- a/tests/runner/fungible-token/output_7.json +++ b/tests/runner/fungible-token/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7882", + "gas_remaining": "7956", "_accepted": "false", "messages": [ { diff --git a/tests/runner/fungible-token/output_8.json b/tests/runner/fungible-token/output_8.json index 7f52aa996..53c827577 100644 --- a/tests/runner/fungible-token/output_8.json +++ b/tests/runner/fungible-token/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7902", + "gas_remaining": "7964", "_accepted": "false", "messages": [ { diff --git a/tests/runner/helloWorld/output_1.json b/tests/runner/helloWorld/output_1.json index ee29c3e3e..9d671ae8e 100644 --- a/tests/runner/helloWorld/output_1.json +++ b/tests/runner/helloWorld/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7941", + "gas_remaining": "7979", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/helloWorld/output_10.json b/tests/runner/helloWorld/output_10.json index 1be8c4363..5f327e4a7 100644 --- a/tests/runner/helloWorld/output_10.json +++ b/tests/runner/helloWorld/output_10.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7973", + "gas_remaining": "7996", "errors": [ { "error_message": "Expected string, got int", diff --git a/tests/runner/helloWorld/output_11.json b/tests/runner/helloWorld/output_11.json index a44c7a629..81692e5b7 100644 --- a/tests/runner/helloWorld/output_11.json +++ b/tests/runner/helloWorld/output_11.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7973", + "gas_remaining": "7996", "errors": [ { "error_message": "_balance field missing", diff --git a/tests/runner/helloWorld/output_2.json b/tests/runner/helloWorld/output_2.json index b3ecd95dd..601b03d55 100644 --- a/tests/runner/helloWorld/output_2.json +++ b/tests/runner/helloWorld/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7981", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/helloWorld/output_3.json b/tests/runner/helloWorld/output_3.json index 8a3b241e1..24d78ff96 100644 --- a/tests/runner/helloWorld/output_3.json +++ b/tests/runner/helloWorld/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7956", + "gas_remaining": "7980", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/helloWorld/output_4.json b/tests/runner/helloWorld/output_4.json index f0ad08078..10612403e 100644 --- a/tests/runner/helloWorld/output_4.json +++ b/tests/runner/helloWorld/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7959", + "gas_remaining": "7982", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/helloWorld/output_5.json b/tests/runner/helloWorld/output_5.json index 06a256b37..906668ff8 100644 --- a/tests/runner/helloWorld/output_5.json +++ b/tests/runner/helloWorld/output_5.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7969", + "gas_remaining": "7992", "errors": [ { "error_message": "Field Unknown : Int32 not defined in the contract\n", diff --git a/tests/runner/helloWorld/output_6.json b/tests/runner/helloWorld/output_6.json index f801b0974..fe17a515d 100644 --- a/tests/runner/helloWorld/output_6.json +++ b/tests/runner/helloWorld/output_6.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7955", + "gas_remaining": "7992", "errors": [ { "error_message": "No parameter found matching message entry Unknown", diff --git a/tests/runner/helloWorld/output_7.json b/tests/runner/helloWorld/output_7.json index ed59b945e..38fd1db48 100644 --- a/tests/runner/helloWorld/output_7.json +++ b/tests/runner/helloWorld/output_7.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7954", + "gas_remaining": "7992", "errors": [ { "error_message": "Duplicate field entries found", diff --git a/tests/runner/helloWorld/output_8.json b/tests/runner/helloWorld/output_8.json index f102cdab0..a901d60c3 100644 --- a/tests/runner/helloWorld/output_8.json +++ b/tests/runner/helloWorld/output_8.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7969", + "gas_remaining": "7992", "errors": [ { "error_message": diff --git a/tests/runner/helloWorld/output_9.json b/tests/runner/helloWorld/output_9.json index 9552e77f0..c70128462 100644 --- a/tests/runner/helloWorld/output_9.json +++ b/tests/runner/helloWorld/output_9.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7957", + "gas_remaining": "7996", "errors": [ { "error_message": "Invalid String value Hello\u0016World in JSON", diff --git a/tests/runner/import-test-lib/output_1.json b/tests/runner/import-test-lib/output_1.json index 5f85af382..7c0a896ca 100644 --- a/tests/runner/import-test-lib/output_1.json +++ b/tests/runner/import-test-lib/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7886", + "gas_remaining": "7909", "_accepted": "false", "messages": [], "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/import-test-lib/output_2.json b/tests/runner/import-test-lib/output_2.json index e00aa4b1f..2b683801f 100644 --- a/tests/runner/import-test-lib/output_2.json +++ b/tests/runner/import-test-lib/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7885", + "gas_remaining": "7909", "_accepted": "false", "messages": [ { diff --git a/tests/runner/import-test-lib/output_3.json b/tests/runner/import-test-lib/output_3.json index 4a9c47f70..516da459e 100644 --- a/tests/runner/import-test-lib/output_3.json +++ b/tests/runner/import-test-lib/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7887", + "gas_remaining": "7911", "_accepted": "false", "messages": [ { diff --git a/tests/runner/import-test-lib2/output_1.json b/tests/runner/import-test-lib2/output_1.json index 8226dae17..0003c6708 100644 --- a/tests/runner/import-test-lib2/output_1.json +++ b/tests/runner/import-test-lib2/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7938", + "gas_remaining": "7962", "_accepted": "false", "messages": [ { diff --git a/tests/runner/import-test-lib3/output_1.json b/tests/runner/import-test-lib3/output_1.json index ceb86dd3c..d1f380897 100644 --- a/tests/runner/import-test-lib3/output_1.json +++ b/tests/runner/import-test-lib3/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7947", + "gas_remaining": "7972", "_accepted": "false", "messages": [ { diff --git a/tests/runner/inplace-map/output_1.json b/tests/runner/inplace-map/output_1.json index 2d09edbdc..3aa405e62 100644 --- a/tests/runner/inplace-map/output_1.json +++ b/tests/runner/inplace-map/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7962", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_10.json b/tests/runner/inplace-map/output_10.json index 5a9a678f9..48041323e 100644 --- a/tests/runner/inplace-map/output_10.json +++ b/tests/runner/inplace-map/output_10.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7965", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_11.json b/tests/runner/inplace-map/output_11.json index b325a7d2e..a92e0a0c8 100644 --- a/tests/runner/inplace-map/output_11.json +++ b/tests/runner/inplace-map/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7966", + "gas_remaining": "7989", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_12.json b/tests/runner/inplace-map/output_12.json index d6bdad9e9..0248c7e48 100644 --- a/tests/runner/inplace-map/output_12.json +++ b/tests/runner/inplace-map/output_12.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7964", + "gas_remaining": "7987", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_13.json b/tests/runner/inplace-map/output_13.json index d6bdad9e9..0248c7e48 100644 --- a/tests/runner/inplace-map/output_13.json +++ b/tests/runner/inplace-map/output_13.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7964", + "gas_remaining": "7987", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_14.json b/tests/runner/inplace-map/output_14.json index ef3084923..dbc252674 100644 --- a/tests/runner/inplace-map/output_14.json +++ b/tests/runner/inplace-map/output_14.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7964", + "gas_remaining": "7987", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_2.json b/tests/runner/inplace-map/output_2.json index fb6ee9514..25593f0c2 100644 --- a/tests/runner/inplace-map/output_2.json +++ b/tests/runner/inplace-map/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7962", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_3.json b/tests/runner/inplace-map/output_3.json index ecdd26850..f6bfd65ef 100644 --- a/tests/runner/inplace-map/output_3.json +++ b/tests/runner/inplace-map/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7962", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_4.json b/tests/runner/inplace-map/output_4.json index 92c18ad60..ea158640e 100644 --- a/tests/runner/inplace-map/output_4.json +++ b/tests/runner/inplace-map/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7963", + "gas_remaining": "7986", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_5.json b/tests/runner/inplace-map/output_5.json index 67e343ebc..f02e9225e 100644 --- a/tests/runner/inplace-map/output_5.json +++ b/tests/runner/inplace-map/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7964", + "gas_remaining": "7987", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_6.json b/tests/runner/inplace-map/output_6.json index 463e0bc5d..a5e968d42 100644 --- a/tests/runner/inplace-map/output_6.json +++ b/tests/runner/inplace-map/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7962", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_7.json b/tests/runner/inplace-map/output_7.json index 74f3f1a75..cb0d1827c 100644 --- a/tests/runner/inplace-map/output_7.json +++ b/tests/runner/inplace-map/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7964", + "gas_remaining": "7987", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_8.json b/tests/runner/inplace-map/output_8.json index 057ab81d2..03619a89c 100644 --- a/tests/runner/inplace-map/output_8.json +++ b/tests/runner/inplace-map/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7965", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/inplace-map/output_9.json b/tests/runner/inplace-map/output_9.json index 34576619b..1d6302fea 100644 --- a/tests/runner/inplace-map/output_9.json +++ b/tests/runner/inplace-map/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7965", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/listiter/output_1.json b/tests/runner/listiter/output_1.json index fcd2b83e4..bc3ccba9b 100644 --- a/tests/runner/listiter/output_1.json +++ b/tests/runner/listiter/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7872", + "gas_remaining": "7996", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/loopy-tree-call/output_1.json b/tests/runner/loopy-tree-call/output_1.json index 6036af6a7..25609208f 100644 --- a/tests/runner/loopy-tree-call/output_1.json +++ b/tests/runner/loopy-tree-call/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7581", + "gas_remaining": "7666", "_accepted": "false", "messages": [ { diff --git a/tests/runner/map_corners_test/output_1.json b/tests/runner/map_corners_test/output_1.json index 57eda1fe2..668612d24 100644 --- a/tests/runner/map_corners_test/output_1.json +++ b/tests/runner/map_corners_test/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7964", + "gas_remaining": "7987", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_10.json b/tests/runner/map_corners_test/output_10.json index 3b5a8feb7..60013610c 100644 --- a/tests/runner/map_corners_test/output_10.json +++ b/tests/runner/map_corners_test/output_10.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7963", + "gas_remaining": "7986", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_11.json b/tests/runner/map_corners_test/output_11.json index 1ecd8bfb8..e26cefc93 100644 --- a/tests/runner/map_corners_test/output_11.json +++ b/tests/runner/map_corners_test/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7971", + "gas_remaining": "7993", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_111.json b/tests/runner/map_corners_test/output_111.json index 6eeb63203..f4097d9ae 100644 --- a/tests/runner/map_corners_test/output_111.json +++ b/tests/runner/map_corners_test/output_111.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7959", + "gas_remaining": "7982", "errors": [ { "error_message": diff --git a/tests/runner/map_corners_test/output_112.json b/tests/runner/map_corners_test/output_112.json index f6655adba..bf1dcb4db 100644 --- a/tests/runner/map_corners_test/output_112.json +++ b/tests/runner/map_corners_test/output_112.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7959", + "gas_remaining": "7981", "errors": [ { "error_message": diff --git a/tests/runner/map_corners_test/output_113.json b/tests/runner/map_corners_test/output_113.json index f66ea4016..a2267862a 100644 --- a/tests/runner/map_corners_test/output_113.json +++ b/tests/runner/map_corners_test/output_113.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7961", + "gas_remaining": "7984", "errors": [ { "error_message": diff --git a/tests/runner/map_corners_test/output_12.json b/tests/runner/map_corners_test/output_12.json index 301b9862b..2f14890e2 100644 --- a/tests/runner/map_corners_test/output_12.json +++ b/tests/runner/map_corners_test/output_12.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7970", + "gas_remaining": "7993", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_13.json b/tests/runner/map_corners_test/output_13.json index b2085954c..f47ef6576 100644 --- a/tests/runner/map_corners_test/output_13.json +++ b/tests/runner/map_corners_test/output_13.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7964", + "gas_remaining": "7987", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_14.json b/tests/runner/map_corners_test/output_14.json index 3df08d84e..bd5172786 100644 --- a/tests/runner/map_corners_test/output_14.json +++ b/tests/runner/map_corners_test/output_14.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7966", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_15.json b/tests/runner/map_corners_test/output_15.json index 2977d9302..67397180c 100644 --- a/tests/runner/map_corners_test/output_15.json +++ b/tests/runner/map_corners_test/output_15.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7926", + "gas_remaining": "7949", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_16.json b/tests/runner/map_corners_test/output_16.json index c088ab8f1..55ea268b9 100644 --- a/tests/runner/map_corners_test/output_16.json +++ b/tests/runner/map_corners_test/output_16.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7938", + "gas_remaining": "7961", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_17.json b/tests/runner/map_corners_test/output_17.json index d832620c4..8165603e3 100644 --- a/tests/runner/map_corners_test/output_17.json +++ b/tests/runner/map_corners_test/output_17.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7971", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_18.json b/tests/runner/map_corners_test/output_18.json index 26e2d4075..17deb0448 100644 --- a/tests/runner/map_corners_test/output_18.json +++ b/tests/runner/map_corners_test/output_18.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7972", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_19.json b/tests/runner/map_corners_test/output_19.json index f2615e7b5..a77250f35 100644 --- a/tests/runner/map_corners_test/output_19.json +++ b/tests/runner/map_corners_test/output_19.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7967", + "gas_remaining": "7989", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_2.json b/tests/runner/map_corners_test/output_2.json index 4ad146b36..a586ffa29 100644 --- a/tests/runner/map_corners_test/output_2.json +++ b/tests/runner/map_corners_test/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7964", + "gas_remaining": "7986", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_20.json b/tests/runner/map_corners_test/output_20.json index f2615e7b5..a77250f35 100644 --- a/tests/runner/map_corners_test/output_20.json +++ b/tests/runner/map_corners_test/output_20.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7967", + "gas_remaining": "7989", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_21.json b/tests/runner/map_corners_test/output_21.json index 79e5d931b..17deb0448 100644 --- a/tests/runner/map_corners_test/output_21.json +++ b/tests/runner/map_corners_test/output_21.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7971", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_22.json b/tests/runner/map_corners_test/output_22.json index 79e5d931b..17deb0448 100644 --- a/tests/runner/map_corners_test/output_22.json +++ b/tests/runner/map_corners_test/output_22.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7971", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_23.json b/tests/runner/map_corners_test/output_23.json index 474d8a9e8..16539780e 100644 --- a/tests/runner/map_corners_test/output_23.json +++ b/tests/runner/map_corners_test/output_23.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7966", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_24.json b/tests/runner/map_corners_test/output_24.json index 474d8a9e8..16539780e 100644 --- a/tests/runner/map_corners_test/output_24.json +++ b/tests/runner/map_corners_test/output_24.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7966", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_3.json b/tests/runner/map_corners_test/output_3.json index 77fcf89ac..fe6e211c7 100644 --- a/tests/runner/map_corners_test/output_3.json +++ b/tests/runner/map_corners_test/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7965", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_4.json b/tests/runner/map_corners_test/output_4.json index 82723ef88..603e9c3d2 100644 --- a/tests/runner/map_corners_test/output_4.json +++ b/tests/runner/map_corners_test/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7968", + "gas_remaining": "7991", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_5.json b/tests/runner/map_corners_test/output_5.json index 6a7451a34..7df44cd8e 100644 --- a/tests/runner/map_corners_test/output_5.json +++ b/tests/runner/map_corners_test/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7954", + "gas_remaining": "7976", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_51.json b/tests/runner/map_corners_test/output_51.json index f4b6775a6..576223674 100644 --- a/tests/runner/map_corners_test/output_51.json +++ b/tests/runner/map_corners_test/output_51.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7949", + "gas_remaining": "7972", "_accepted": "false", "messages": [ { diff --git a/tests/runner/map_corners_test/output_52.json b/tests/runner/map_corners_test/output_52.json index c93afea67..4b0d520ad 100644 --- a/tests/runner/map_corners_test/output_52.json +++ b/tests/runner/map_corners_test/output_52.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7949", + "gas_remaining": "7971", "_accepted": "false", "messages": [ { diff --git a/tests/runner/map_corners_test/output_53.json b/tests/runner/map_corners_test/output_53.json index 9d0d1748c..e5cb80497 100644 --- a/tests/runner/map_corners_test/output_53.json +++ b/tests/runner/map_corners_test/output_53.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7951", + "gas_remaining": "7974", "_accepted": "false", "messages": [ { diff --git a/tests/runner/map_corners_test/output_6.json b/tests/runner/map_corners_test/output_6.json index 5ab0c4989..76c894977 100644 --- a/tests/runner/map_corners_test/output_6.json +++ b/tests/runner/map_corners_test/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7975", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_7.json b/tests/runner/map_corners_test/output_7.json index 542728387..9f7fdef64 100644 --- a/tests/runner/map_corners_test/output_7.json +++ b/tests/runner/map_corners_test/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7959", + "gas_remaining": "7982", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_8.json b/tests/runner/map_corners_test/output_8.json index 0b94ba460..2a89cc54b 100644 --- a/tests/runner/map_corners_test/output_8.json +++ b/tests/runner/map_corners_test/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7959", + "gas_remaining": "7982", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test/output_9.json b/tests/runner/map_corners_test/output_9.json index 486ed3ce0..aa4c8a6ae 100644 --- a/tests/runner/map_corners_test/output_9.json +++ b/tests/runner/map_corners_test/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7965", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_corners_test_combined/output_1.json b/tests/runner/map_corners_test_combined/output_1.json index 4e966b0dd..753d5b67b 100644 --- a/tests/runner/map_corners_test_combined/output_1.json +++ b/tests/runner/map_corners_test_combined/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7722", + "gas_remaining": "7745", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/map_key_test/output_1.json b/tests/runner/map_key_test/output_1.json index dd47781a1..5f3d0a0e3 100644 --- a/tests/runner/map_key_test/output_1.json +++ b/tests/runner/map_key_test/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7973", + "gas_remaining": "7997", "_accepted": "false", "messages": [], "states": [ { "vname": "_balance", "type": "Uint128", "value": "0" } ], diff --git a/tests/runner/mappair/output_1.json b/tests/runner/mappair/output_1.json index a60560589..916a4573a 100644 --- a/tests/runner/mappair/output_1.json +++ b/tests/runner/mappair/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7958", + "gas_remaining": "7981", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/mappair/output_12.json b/tests/runner/mappair/output_12.json index 8d3a47fae..b0a18c4ae 100644 --- a/tests/runner/mappair/output_12.json +++ b/tests/runner/mappair/output_12.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7956", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/mappair/output_13.json b/tests/runner/mappair/output_13.json index 077915e08..cf971bd2a 100644 --- a/tests/runner/mappair/output_13.json +++ b/tests/runner/mappair/output_13.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7970", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/mappair/output_14.json b/tests/runner/mappair/output_14.json index 35c9e8e7c..1365a6702 100644 --- a/tests/runner/mappair/output_14.json +++ b/tests/runner/mappair/output_14.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7963", + "gas_remaining": "7986", "errors": [ { "error_message": diff --git a/tests/runner/mappair/output_2.json b/tests/runner/mappair/output_2.json index 56fcb5655..0785edac1 100644 --- a/tests/runner/mappair/output_2.json +++ b/tests/runner/mappair/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7922", + "gas_remaining": "7960", "_accepted": "false", "messages": [ { diff --git a/tests/runner/mappair/output_3.json b/tests/runner/mappair/output_3.json index be8d2e43c..64c0db876 100644 --- a/tests/runner/mappair/output_3.json +++ b/tests/runner/mappair/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7919", + "gas_remaining": "7956", "_accepted": "false", "messages": [ { diff --git a/tests/runner/mappair/output_4.json b/tests/runner/mappair/output_4.json index 7da3c1da8..eafb5393f 100644 --- a/tests/runner/mappair/output_4.json +++ b/tests/runner/mappair/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7940", + "gas_remaining": "7964", "_accepted": "false", "messages": [ { diff --git a/tests/runner/mappair/output_5.json b/tests/runner/mappair/output_5.json index 9f1b53faa..c8e3d1b9d 100644 --- a/tests/runner/mappair/output_5.json +++ b/tests/runner/mappair/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7939", + "gas_remaining": "7962", "_accepted": "false", "messages": [ { diff --git a/tests/runner/mappair/output_6.json b/tests/runner/mappair/output_6.json index 9f477fb4e..32a8619c4 100644 --- a/tests/runner/mappair/output_6.json +++ b/tests/runner/mappair/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7911", + "gas_remaining": "7935", "_accepted": "false", "messages": [ { diff --git a/tests/runner/mappair/output_7.json b/tests/runner/mappair/output_7.json index faf6b4a7a..32767c93f 100644 --- a/tests/runner/mappair/output_7.json +++ b/tests/runner/mappair/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7938", + "gas_remaining": "7961", "_accepted": "false", "messages": [ { diff --git a/tests/runner/mappair/output_8.json b/tests/runner/mappair/output_8.json index 4f7e9d132..8222eceef 100644 --- a/tests/runner/mappair/output_8.json +++ b/tests/runner/mappair/output_8.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7970", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/mappair/output_9.json b/tests/runner/mappair/output_9.json index c075379aa..b6474d9a5 100644 --- a/tests/runner/mappair/output_9.json +++ b/tests/runner/mappair/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7946", + "gas_remaining": "7971", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/multiple-msgs/output_1.json b/tests/runner/multiple-msgs/output_1.json index 09dc42330..4a678404f 100644 --- a/tests/runner/multiple-msgs/output_1.json +++ b/tests/runner/multiple-msgs/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7939", + "gas_remaining": "7962", "_accepted": "false", "messages": [ { diff --git a/tests/runner/nonfungible-token/output_1.json b/tests/runner/nonfungible-token/output_1.json index cf88e844f..6bd98fff4 100644 --- a/tests/runner/nonfungible-token/output_1.json +++ b/tests/runner/nonfungible-token/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7904", + "gas_remaining": "7959", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_10.json b/tests/runner/nonfungible-token/output_10.json index 738f92cf1..34f77e006 100644 --- a/tests/runner/nonfungible-token/output_10.json +++ b/tests/runner/nonfungible-token/output_10.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7838", + "gas_remaining": "7912", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_11.json b/tests/runner/nonfungible-token/output_11.json index ef4a277cb..a673f5df2 100644 --- a/tests/runner/nonfungible-token/output_11.json +++ b/tests/runner/nonfungible-token/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7835", + "gas_remaining": "7909", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_12.json b/tests/runner/nonfungible-token/output_12.json index 5d0a4151a..1cf3232b8 100644 --- a/tests/runner/nonfungible-token/output_12.json +++ b/tests/runner/nonfungible-token/output_12.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7885", + "gas_remaining": "7940", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_2.json b/tests/runner/nonfungible-token/output_2.json index 9456db4f5..abb57ea46 100644 --- a/tests/runner/nonfungible-token/output_2.json +++ b/tests/runner/nonfungible-token/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7892", + "gas_remaining": "7947", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_21.json b/tests/runner/nonfungible-token/output_21.json index 35a6835be..e06d1241b 100644 --- a/tests/runner/nonfungible-token/output_21.json +++ b/tests/runner/nonfungible-token/output_21.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7920", + "gas_remaining": "7975", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_22.json b/tests/runner/nonfungible-token/output_22.json index 8c94648d1..714e64979 100644 --- a/tests/runner/nonfungible-token/output_22.json +++ b/tests/runner/nonfungible-token/output_22.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7913", + "gas_remaining": "7968", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_23.json b/tests/runner/nonfungible-token/output_23.json index 278ede01f..4a3e1a725 100644 --- a/tests/runner/nonfungible-token/output_23.json +++ b/tests/runner/nonfungible-token/output_23.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7877", + "gas_remaining": "7952", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_24.json b/tests/runner/nonfungible-token/output_24.json index 668c2df66..08412352e 100644 --- a/tests/runner/nonfungible-token/output_24.json +++ b/tests/runner/nonfungible-token/output_24.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7890", + "gas_remaining": "7965", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_25.json b/tests/runner/nonfungible-token/output_25.json index 6925b8449..cb914dc8a 100644 --- a/tests/runner/nonfungible-token/output_25.json +++ b/tests/runner/nonfungible-token/output_25.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7879", + "gas_remaining": "7954", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_26.json b/tests/runner/nonfungible-token/output_26.json index ad27dca7a..e9682c808 100644 --- a/tests/runner/nonfungible-token/output_26.json +++ b/tests/runner/nonfungible-token/output_26.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7901", + "gas_remaining": "7957", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_27.json b/tests/runner/nonfungible-token/output_27.json index eff4eee5b..43f9fc730 100644 --- a/tests/runner/nonfungible-token/output_27.json +++ b/tests/runner/nonfungible-token/output_27.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7904", + "gas_remaining": "7975", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_3.json b/tests/runner/nonfungible-token/output_3.json index b21d6db68..daf4820d0 100644 --- a/tests/runner/nonfungible-token/output_3.json +++ b/tests/runner/nonfungible-token/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7844", + "gas_remaining": "7918", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_4.json b/tests/runner/nonfungible-token/output_4.json index dd0cc399b..33d3e315b 100644 --- a/tests/runner/nonfungible-token/output_4.json +++ b/tests/runner/nonfungible-token/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7937", + "gas_remaining": "7980", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_5.json b/tests/runner/nonfungible-token/output_5.json index dd0cc399b..33d3e315b 100644 --- a/tests/runner/nonfungible-token/output_5.json +++ b/tests/runner/nonfungible-token/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7937", + "gas_remaining": "7980", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_6.json b/tests/runner/nonfungible-token/output_6.json index fc6343f25..93d1f2610 100644 --- a/tests/runner/nonfungible-token/output_6.json +++ b/tests/runner/nonfungible-token/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7935", + "gas_remaining": "7973", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_7.json b/tests/runner/nonfungible-token/output_7.json index f8cfe03d8..49df3dbf8 100644 --- a/tests/runner/nonfungible-token/output_7.json +++ b/tests/runner/nonfungible-token/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7891", + "gas_remaining": "7946", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_8.json b/tests/runner/nonfungible-token/output_8.json index 2d77efc8a..00713f16b 100644 --- a/tests/runner/nonfungible-token/output_8.json +++ b/tests/runner/nonfungible-token/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7896", + "gas_remaining": "7966", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/nonfungible-token/output_9.json b/tests/runner/nonfungible-token/output_9.json index b8d8d4b03..fc44198d7 100644 --- a/tests/runner/nonfungible-token/output_9.json +++ b/tests/runner/nonfungible-token/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7890", + "gas_remaining": "7961", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/one-msg/output_1.json b/tests/runner/one-msg/output_1.json index 4b7199ea7..62efab835 100644 --- a/tests/runner/one-msg/output_1.json +++ b/tests/runner/one-msg/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7954", + "gas_remaining": "7977", "_accepted": "false", "messages": [ { diff --git a/tests/runner/one-msg1/output_1.json b/tests/runner/one-msg1/output_1.json index a733529d4..90aadf926 100644 --- a/tests/runner/one-msg1/output_1.json +++ b/tests/runner/one-msg1/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7953", + "gas_remaining": "7976", "_accepted": "false", "messages": [ { diff --git a/tests/runner/ping/output_0.json b/tests/runner/ping/output_0.json index 9560c4688..f3f18065c 100644 --- a/tests/runner/ping/output_0.json +++ b/tests/runner/ping/output_0.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/ping/output_1.json b/tests/runner/ping/output_1.json index f0149b0ab..f2a8bde46 100644 --- a/tests/runner/ping/output_1.json +++ b/tests/runner/ping/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7949", + "gas_remaining": "7971", "_accepted": "false", "messages": [ { diff --git a/tests/runner/ping/output_2.json b/tests/runner/ping/output_2.json index 71e800218..a192e53a6 100644 --- a/tests/runner/ping/output_2.json +++ b/tests/runner/ping/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7949", + "gas_remaining": "7971", "_accepted": "false", "messages": [ { diff --git a/tests/runner/ping/output_3.json b/tests/runner/ping/output_3.json index 300325cd1..56beda26b 100644 --- a/tests/runner/ping/output_3.json +++ b/tests/runner/ping/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7965", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/pong/output_0.json b/tests/runner/pong/output_0.json index 501904fe5..d08013b30 100644 --- a/tests/runner/pong/output_0.json +++ b/tests/runner/pong/output_0.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/pong/output_1.json b/tests/runner/pong/output_1.json index 58d2d8c2d..3b9965784 100644 --- a/tests/runner/pong/output_1.json +++ b/tests/runner/pong/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7949", + "gas_remaining": "7971", "_accepted": "false", "messages": [ { diff --git a/tests/runner/pong/output_2.json b/tests/runner/pong/output_2.json index 96e948fb0..aacdbe6a2 100644 --- a/tests/runner/pong/output_2.json +++ b/tests/runner/pong/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7949", + "gas_remaining": "7971", "_accepted": "false", "messages": [ { diff --git a/tests/runner/pong/output_3.json b/tests/runner/pong/output_3.json index 77a59e17a..69853894f 100644 --- a/tests/runner/pong/output_3.json +++ b/tests/runner/pong/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7969", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_1.json b/tests/runner/remote_state_reads/output_1.json index 7c3a2302c..de9b64595 100644 --- a/tests/runner/remote_state_reads/output_1.json +++ b/tests/runner/remote_state_reads/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7870", + "gas_remaining": "7952", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_10.json b/tests/runner/remote_state_reads/output_10.json index 6869849e4..fa7ca028e 100644 --- a/tests/runner/remote_state_reads/output_10.json +++ b/tests/runner/remote_state_reads/output_10.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7870", + "gas_remaining": "7952", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_101.json b/tests/runner/remote_state_reads/output_101.json index d1999575f..7d6065516 100644 --- a/tests/runner/remote_state_reads/output_101.json +++ b/tests/runner/remote_state_reads/output_101.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7911", + "gas_remaining": "7993", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_102.json b/tests/runner/remote_state_reads/output_102.json index 6751c76b1..a15de4f7e 100644 --- a/tests/runner/remote_state_reads/output_102.json +++ b/tests/runner/remote_state_reads/output_102.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7912", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_103.json b/tests/runner/remote_state_reads/output_103.json index 6751c76b1..a15de4f7e 100644 --- a/tests/runner/remote_state_reads/output_103.json +++ b/tests/runner/remote_state_reads/output_103.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7912", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_104.json b/tests/runner/remote_state_reads/output_104.json index 6751c76b1..a15de4f7e 100644 --- a/tests/runner/remote_state_reads/output_104.json +++ b/tests/runner/remote_state_reads/output_104.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7912", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_105.json b/tests/runner/remote_state_reads/output_105.json index 6751c76b1..a15de4f7e 100644 --- a/tests/runner/remote_state_reads/output_105.json +++ b/tests/runner/remote_state_reads/output_105.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7912", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_106.json b/tests/runner/remote_state_reads/output_106.json index 6751c76b1..a15de4f7e 100644 --- a/tests/runner/remote_state_reads/output_106.json +++ b/tests/runner/remote_state_reads/output_106.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7912", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_107.json b/tests/runner/remote_state_reads/output_107.json index 6751c76b1..a15de4f7e 100644 --- a/tests/runner/remote_state_reads/output_107.json +++ b/tests/runner/remote_state_reads/output_107.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7912", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_108.json b/tests/runner/remote_state_reads/output_108.json index 6751c76b1..a15de4f7e 100644 --- a/tests/runner/remote_state_reads/output_108.json +++ b/tests/runner/remote_state_reads/output_108.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7912", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_109.json b/tests/runner/remote_state_reads/output_109.json index ab4e8b0ce..fa8c31b8c 100644 --- a/tests/runner/remote_state_reads/output_109.json +++ b/tests/runner/remote_state_reads/output_109.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7484", + "gas_remaining": "7991", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_11.json b/tests/runner/remote_state_reads/output_11.json index fb3de2ac9..28a7836c6 100644 --- a/tests/runner/remote_state_reads/output_11.json +++ b/tests/runner/remote_state_reads/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7870", + "gas_remaining": "7952", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_110.json b/tests/runner/remote_state_reads/output_110.json index 9362e1d21..cbab59131 100644 --- a/tests/runner/remote_state_reads/output_110.json +++ b/tests/runner/remote_state_reads/output_110.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7484", + "gas_remaining": "7991", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_111.json b/tests/runner/remote_state_reads/output_111.json index 9362e1d21..cbab59131 100644 --- a/tests/runner/remote_state_reads/output_111.json +++ b/tests/runner/remote_state_reads/output_111.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7484", + "gas_remaining": "7991", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_112.json b/tests/runner/remote_state_reads/output_112.json index 9bce16e2d..011faeec5 100644 --- a/tests/runner/remote_state_reads/output_112.json +++ b/tests/runner/remote_state_reads/output_112.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7428", + "gas_remaining": "7999", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_113.json b/tests/runner/remote_state_reads/output_113.json index d687cd5df..0a4b24a01 100644 --- a/tests/runner/remote_state_reads/output_113.json +++ b/tests/runner/remote_state_reads/output_113.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7428", + "gas_remaining": "7999", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_114.json b/tests/runner/remote_state_reads/output_114.json index 4822b9eb6..c49a84587 100644 --- a/tests/runner/remote_state_reads/output_114.json +++ b/tests/runner/remote_state_reads/output_114.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7428", + "gas_remaining": "7999", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_115.json b/tests/runner/remote_state_reads/output_115.json index 21cbc426b..07db465f2 100644 --- a/tests/runner/remote_state_reads/output_115.json +++ b/tests/runner/remote_state_reads/output_115.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7486", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_116.json b/tests/runner/remote_state_reads/output_116.json index 21cbc426b..07db465f2 100644 --- a/tests/runner/remote_state_reads/output_116.json +++ b/tests/runner/remote_state_reads/output_116.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7486", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_117.json b/tests/runner/remote_state_reads/output_117.json index e521359ed..ce6e12100 100644 --- a/tests/runner/remote_state_reads/output_117.json +++ b/tests/runner/remote_state_reads/output_117.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7487", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_118.json b/tests/runner/remote_state_reads/output_118.json index e55450277..82bfb4cf1 100644 --- a/tests/runner/remote_state_reads/output_118.json +++ b/tests/runner/remote_state_reads/output_118.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7485", + "gas_remaining": "7992", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_119.json b/tests/runner/remote_state_reads/output_119.json index 4d07a8ce8..b9a3b47c0 100644 --- a/tests/runner/remote_state_reads/output_119.json +++ b/tests/runner/remote_state_reads/output_119.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7492", + "gas_remaining": "7999", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_120.json b/tests/runner/remote_state_reads/output_120.json index 95c8f6198..b2b9eb26c 100644 --- a/tests/runner/remote_state_reads/output_120.json +++ b/tests/runner/remote_state_reads/output_120.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7492", + "gas_remaining": "7999", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_121.json b/tests/runner/remote_state_reads/output_121.json index e6b6f0a2a..5645fc8c4 100644 --- a/tests/runner/remote_state_reads/output_121.json +++ b/tests/runner/remote_state_reads/output_121.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7486", + "gas_remaining": "7993", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_122.json b/tests/runner/remote_state_reads/output_122.json index d5960b0b1..05b1f137b 100644 --- a/tests/runner/remote_state_reads/output_122.json +++ b/tests/runner/remote_state_reads/output_122.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7486", + "gas_remaining": "7993", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_123.json b/tests/runner/remote_state_reads/output_123.json index e83a80fa5..d38d2744d 100644 --- a/tests/runner/remote_state_reads/output_123.json +++ b/tests/runner/remote_state_reads/output_123.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7486", + "gas_remaining": "7993", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_124.json b/tests/runner/remote_state_reads/output_124.json index 10fbd87e5..6452fcb2a 100644 --- a/tests/runner/remote_state_reads/output_124.json +++ b/tests/runner/remote_state_reads/output_124.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7492", + "gas_remaining": "7999", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_125.json b/tests/runner/remote_state_reads/output_125.json index f84e0dcb5..9798d0e17 100644 --- a/tests/runner/remote_state_reads/output_125.json +++ b/tests/runner/remote_state_reads/output_125.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7487", + "gas_remaining": "7994", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_126.json b/tests/runner/remote_state_reads/output_126.json index d732e14d6..db1cc1d8b 100644 --- a/tests/runner/remote_state_reads/output_126.json +++ b/tests/runner/remote_state_reads/output_126.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7960", + "gas_remaining": "7984", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_127.json b/tests/runner/remote_state_reads/output_127.json index ca600122e..9ea066b43 100644 --- a/tests/runner/remote_state_reads/output_127.json +++ b/tests/runner/remote_state_reads/output_127.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7966", + "gas_remaining": "7990", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_128.json b/tests/runner/remote_state_reads/output_128.json index 1f72a0ee8..f61828812 100644 --- a/tests/runner/remote_state_reads/output_128.json +++ b/tests/runner/remote_state_reads/output_128.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7911", + "gas_remaining": "7993", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_129.json b/tests/runner/remote_state_reads/output_129.json index b37bb4313..60080c411 100644 --- a/tests/runner/remote_state_reads/output_129.json +++ b/tests/runner/remote_state_reads/output_129.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7486", + "gas_remaining": "7999", "errors": [ { "error_message": "Address type not allowed in json file", diff --git a/tests/runner/remote_state_reads/output_130.json b/tests/runner/remote_state_reads/output_130.json index d5960b0b1..05b1f137b 100644 --- a/tests/runner/remote_state_reads/output_130.json +++ b/tests/runner/remote_state_reads/output_130.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7486", + "gas_remaining": "7993", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_131.json b/tests/runner/remote_state_reads/output_131.json index d5960b0b1..05b1f137b 100644 --- a/tests/runner/remote_state_reads/output_131.json +++ b/tests/runner/remote_state_reads/output_131.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7486", + "gas_remaining": "7993", "errors": [ { "error_message": diff --git a/tests/runner/remote_state_reads/output_2.json b/tests/runner/remote_state_reads/output_2.json index 7c3a2302c..de9b64595 100644 --- a/tests/runner/remote_state_reads/output_2.json +++ b/tests/runner/remote_state_reads/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7870", + "gas_remaining": "7952", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_3.json b/tests/runner/remote_state_reads/output_3.json index 7c3a2302c..de9b64595 100644 --- a/tests/runner/remote_state_reads/output_3.json +++ b/tests/runner/remote_state_reads/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7870", + "gas_remaining": "7952", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_4.json b/tests/runner/remote_state_reads/output_4.json index 7c3a2302c..de9b64595 100644 --- a/tests/runner/remote_state_reads/output_4.json +++ b/tests/runner/remote_state_reads/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7870", + "gas_remaining": "7952", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_5.json b/tests/runner/remote_state_reads/output_5.json index 7c3a2302c..de9b64595 100644 --- a/tests/runner/remote_state_reads/output_5.json +++ b/tests/runner/remote_state_reads/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7870", + "gas_remaining": "7952", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_6.json b/tests/runner/remote_state_reads/output_6.json index 8cfb0e04e..cbacd0269 100644 --- a/tests/runner/remote_state_reads/output_6.json +++ b/tests/runner/remote_state_reads/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7483", + "gas_remaining": "7991", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_7.json b/tests/runner/remote_state_reads/output_7.json index 431bc5e05..4155a266f 100644 --- a/tests/runner/remote_state_reads/output_7.json +++ b/tests/runner/remote_state_reads/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7929", + "gas_remaining": "7954", "_accepted": "false", "messages": [ { diff --git a/tests/runner/remote_state_reads/output_8.json b/tests/runner/remote_state_reads/output_8.json index e4cc877c5..3218e4257 100644 --- a/tests/runner/remote_state_reads/output_8.json +++ b/tests/runner/remote_state_reads/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7954", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads/output_9.json b/tests/runner/remote_state_reads/output_9.json index f0b85173f..a9398089f 100644 --- a/tests/runner/remote_state_reads/output_9.json +++ b/tests/runner/remote_state_reads/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7958", + "gas_remaining": "7982", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads_2/output_1.json b/tests/runner/remote_state_reads_2/output_1.json index 5447f313d..1035a0a4c 100644 --- a/tests/runner/remote_state_reads_2/output_1.json +++ b/tests/runner/remote_state_reads_2/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads_2/output_2.json b/tests/runner/remote_state_reads_2/output_2.json index ae48ece06..f7cd99cea 100644 --- a/tests/runner/remote_state_reads_2/output_2.json +++ b/tests/runner/remote_state_reads_2/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7988", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads_2/output_3.json b/tests/runner/remote_state_reads_2/output_3.json index 6f1805f0e..3e5af1ed8 100644 --- a/tests/runner/remote_state_reads_2/output_3.json +++ b/tests/runner/remote_state_reads_2/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7967", + "gas_remaining": "7993", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads_2/output_4.json b/tests/runner/remote_state_reads_2/output_4.json index 9ed1ea072..6421d7906 100644 --- a/tests/runner/remote_state_reads_2/output_4.json +++ b/tests/runner/remote_state_reads_2/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7970", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/remote_state_reads_2/output_5.json b/tests/runner/remote_state_reads_2/output_5.json index 55895353a..904cb9a97 100644 --- a/tests/runner/remote_state_reads_2/output_5.json +++ b/tests/runner/remote_state_reads_2/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7967", + "gas_remaining": "7993", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/salarybot/output_0.json b/tests/runner/salarybot/output_0.json index 8adf8c080..8a19e15b9 100644 --- a/tests/runner/salarybot/output_0.json +++ b/tests/runner/salarybot/output_0.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7965", + "gas_remaining": "7989", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/salarybot/output_1.json b/tests/runner/salarybot/output_1.json index 6b6b3836b..d30993697 100644 --- a/tests/runner/salarybot/output_1.json +++ b/tests/runner/salarybot/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7919", + "gas_remaining": "7976", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/salarybot/output_2.json b/tests/runner/salarybot/output_2.json index bb037d290..2a7194b48 100644 --- a/tests/runner/salarybot/output_2.json +++ b/tests/runner/salarybot/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7919", + "gas_remaining": "7976", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/salarybot/output_3.json b/tests/runner/salarybot/output_3.json index 68b0ddc3b..1cc3a2694 100644 --- a/tests/runner/salarybot/output_3.json +++ b/tests/runner/salarybot/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7919", + "gas_remaining": "7976", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/salarybot/output_4.json b/tests/runner/salarybot/output_4.json index b4d227b83..870efacd7 100644 --- a/tests/runner/salarybot/output_4.json +++ b/tests/runner/salarybot/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7934", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/salarybot/output_5.json b/tests/runner/salarybot/output_5.json index 0068a31a6..57c86508b 100644 --- a/tests/runner/salarybot/output_5.json +++ b/tests/runner/salarybot/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7920", + "gas_remaining": "7944", "_accepted": "false", "messages": [ { diff --git a/tests/runner/schnorr/output_1.json b/tests/runner/schnorr/output_1.json index 1d205c533..9b5f09c4d 100644 --- a/tests/runner/schnorr/output_1.json +++ b/tests/runner/schnorr/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7862", + "gas_remaining": "7936", "_accepted": "false", "messages": [ { diff --git a/tests/runner/schnorr/output_2.json b/tests/runner/schnorr/output_2.json index 755a74df1..789b04cdd 100644 --- a/tests/runner/schnorr/output_2.json +++ b/tests/runner/schnorr/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7861", + "gas_remaining": "7935", "_accepted": "false", "messages": [ { diff --git a/tests/runner/schnorr/output_3.json b/tests/runner/schnorr/output_3.json index 1d205c533..9b5f09c4d 100644 --- a/tests/runner/schnorr/output_3.json +++ b/tests/runner/schnorr/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7862", + "gas_remaining": "7936", "_accepted": "false", "messages": [ { diff --git a/tests/runner/shadow_import/output_1.json b/tests/runner/shadow_import/output_1.json index eb52ce46d..248bc9508 100644 --- a/tests/runner/shadow_import/output_1.json +++ b/tests/runner/shadow_import/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7962", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/shogi/output_1.json b/tests/runner/shogi/output_1.json index d029d455c..46f3d9c75 100644 --- a/tests/runner/shogi/output_1.json +++ b/tests/runner/shogi/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7666", + "gas_remaining": "7804", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/shogi/output_2.json b/tests/runner/shogi/output_2.json index de95d9925..156803483 100644 --- a/tests/runner/shogi/output_2.json +++ b/tests/runner/shogi/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7665", + "gas_remaining": "7803", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/shogi/output_3.json b/tests/runner/shogi/output_3.json index 6b8ea5882..e5325bf13 100644 --- a/tests/runner/shogi/output_3.json +++ b/tests/runner/shogi/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7655", + "gas_remaining": "7793", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/shogi/output_4.json b/tests/runner/shogi/output_4.json index 5c59bca04..da4684351 100644 --- a/tests/runner/shogi/output_4.json +++ b/tests/runner/shogi/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7743", + "gas_remaining": "7866", "_accepted": "false", "messages": [ { diff --git a/tests/runner/shogi/output_5.json b/tests/runner/shogi/output_5.json index c1f65c11a..385441e8c 100644 --- a/tests/runner/shogi/output_5.json +++ b/tests/runner/shogi/output_5.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7763", + "gas_remaining": "7886", "errors": [ { "error_message": diff --git a/tests/runner/shogi/output_6.json b/tests/runner/shogi/output_6.json index 01ed12e10..423109da4 100644 --- a/tests/runner/shogi/output_6.json +++ b/tests/runner/shogi/output_6.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7868", + "gas_remaining": "7990", "errors": [ { "error_message": diff --git a/tests/runner/shogi/output_7.json b/tests/runner/shogi/output_7.json index c1f65a920..0af2b4c26 100644 --- a/tests/runner/shogi/output_7.json +++ b/tests/runner/shogi/output_7.json @@ -1,5 +1,5 @@ { - "gas_remaining": "7761", + "gas_remaining": "7886", "errors": [ { "error_message": diff --git a/tests/runner/shogi_proc/output_1.json b/tests/runner/shogi_proc/output_1.json index da27ec9af..056213304 100644 --- a/tests/runner/shogi_proc/output_1.json +++ b/tests/runner/shogi_proc/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7665", + "gas_remaining": "7803", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/shogi_proc/output_2.json b/tests/runner/shogi_proc/output_2.json index b74b1fc67..807cffbbf 100644 --- a/tests/runner/shogi_proc/output_2.json +++ b/tests/runner/shogi_proc/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7664", + "gas_remaining": "7802", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/shogi_proc/output_3.json b/tests/runner/shogi_proc/output_3.json index b6ba6916e..ba2d4f870 100644 --- a/tests/runner/shogi_proc/output_3.json +++ b/tests/runner/shogi_proc/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7654", + "gas_remaining": "7792", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/shogi_proc/output_4.json b/tests/runner/shogi_proc/output_4.json index 5c59bca04..da4684351 100644 --- a/tests/runner/shogi_proc/output_4.json +++ b/tests/runner/shogi_proc/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7743", + "gas_remaining": "7866", "_accepted": "false", "messages": [ { diff --git a/tests/runner/simple-dex/output_1.json b/tests/runner/simple-dex/output_1.json index 13bb87c43..65f4a5698 100644 --- a/tests/runner/simple-dex/output_1.json +++ b/tests/runner/simple-dex/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7818", + "gas_remaining": "7921", "_accepted": "false", "messages": [ { diff --git a/tests/runner/simple-dex/output_2.json b/tests/runner/simple-dex/output_2.json index fbc1bdc28..0adb00573 100644 --- a/tests/runner/simple-dex/output_2.json +++ b/tests/runner/simple-dex/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7872", + "gas_remaining": "7917", "_accepted": "false", "messages": [ { diff --git a/tests/runner/simple-dex/output_3.json b/tests/runner/simple-dex/output_3.json index 7ce624332..c623a731c 100644 --- a/tests/runner/simple-dex/output_3.json +++ b/tests/runner/simple-dex/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7932", + "gas_remaining": "7978", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/simple-dex/output_4.json b/tests/runner/simple-dex/output_4.json index e86e092df..382ae1b7f 100644 --- a/tests/runner/simple-dex/output_4.json +++ b/tests/runner/simple-dex/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7898", + "gas_remaining": "7940", "_accepted": "false", "messages": [ { diff --git a/tests/runner/simple-dex/output_5.json b/tests/runner/simple-dex/output_5.json index 94aa15983..a079b0246 100644 --- a/tests/runner/simple-dex/output_5.json +++ b/tests/runner/simple-dex/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7898", + "gas_remaining": "7940", "_accepted": "false", "messages": [ { diff --git a/tests/runner/simple-dex/output_6.json b/tests/runner/simple-dex/output_6.json index 05bbd75f2..318c85c8c 100644 --- a/tests/runner/simple-dex/output_6.json +++ b/tests/runner/simple-dex/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7931", + "gas_remaining": "7973", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/simple-dex/output_7.json b/tests/runner/simple-dex/output_7.json index e3ed6664e..b0a1e6076 100644 --- a/tests/runner/simple-dex/output_7.json +++ b/tests/runner/simple-dex/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7909", + "gas_remaining": "7955", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/simple-dex/output_8.json b/tests/runner/simple-dex/output_8.json index 841afcc10..2840fdbba 100644 --- a/tests/runner/simple-dex/output_8.json +++ b/tests/runner/simple-dex/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7916", + "gas_remaining": "7962", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_1.json b/tests/runner/type_casts/output_1.json index 8b3a6fc41..abccad326 100644 --- a/tests/runner/type_casts/output_1.json +++ b/tests/runner/type_casts/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7950", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_10.json b/tests/runner/type_casts/output_10.json index ebefcd86e..d48868efc 100644 --- a/tests/runner/type_casts/output_10.json +++ b/tests/runner/type_casts/output_10.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7991", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_11.json b/tests/runner/type_casts/output_11.json index dc73fb1cd..41d9a38f9 100644 --- a/tests/runner/type_casts/output_11.json +++ b/tests/runner/type_casts/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_12.json b/tests/runner/type_casts/output_12.json index dc73fb1cd..41d9a38f9 100644 --- a/tests/runner/type_casts/output_12.json +++ b/tests/runner/type_casts/output_12.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_13.json b/tests/runner/type_casts/output_13.json index 72721c522..2b7147034 100644 --- a/tests/runner/type_casts/output_13.json +++ b/tests/runner/type_casts/output_13.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7991", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_14.json b/tests/runner/type_casts/output_14.json index 95d3a55d7..8bc921a2a 100644 --- a/tests/runner/type_casts/output_14.json +++ b/tests/runner/type_casts/output_14.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7991", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_15.json b/tests/runner/type_casts/output_15.json index dc73fb1cd..41d9a38f9 100644 --- a/tests/runner/type_casts/output_15.json +++ b/tests/runner/type_casts/output_15.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_16.json b/tests/runner/type_casts/output_16.json index 28ca586cd..17281bc7c 100644 --- a/tests/runner/type_casts/output_16.json +++ b/tests/runner/type_casts/output_16.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7990", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_17.json b/tests/runner/type_casts/output_17.json index 28ca586cd..17281bc7c 100644 --- a/tests/runner/type_casts/output_17.json +++ b/tests/runner/type_casts/output_17.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7990", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_18.json b/tests/runner/type_casts/output_18.json index dc73fb1cd..41d9a38f9 100644 --- a/tests/runner/type_casts/output_18.json +++ b/tests/runner/type_casts/output_18.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_19.json b/tests/runner/type_casts/output_19.json index dc73fb1cd..41d9a38f9 100644 --- a/tests/runner/type_casts/output_19.json +++ b/tests/runner/type_casts/output_19.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_2.json b/tests/runner/type_casts/output_2.json index 8b3a6fc41..abccad326 100644 --- a/tests/runner/type_casts/output_2.json +++ b/tests/runner/type_casts/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7950", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_20.json b/tests/runner/type_casts/output_20.json index dc73fb1cd..41d9a38f9 100644 --- a/tests/runner/type_casts/output_20.json +++ b/tests/runner/type_casts/output_20.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_21.json b/tests/runner/type_casts/output_21.json index dc73fb1cd..41d9a38f9 100644 --- a/tests/runner/type_casts/output_21.json +++ b/tests/runner/type_casts/output_21.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_22.json b/tests/runner/type_casts/output_22.json index 14a331a9d..ca42dd06f 100644 --- a/tests/runner/type_casts/output_22.json +++ b/tests/runner/type_casts/output_22.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7986", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_23.json b/tests/runner/type_casts/output_23.json index 14a331a9d..ca42dd06f 100644 --- a/tests/runner/type_casts/output_23.json +++ b/tests/runner/type_casts/output_23.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7986", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_24.json b/tests/runner/type_casts/output_24.json index dc73fb1cd..41d9a38f9 100644 --- a/tests/runner/type_casts/output_24.json +++ b/tests/runner/type_casts/output_24.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_25.json b/tests/runner/type_casts/output_25.json index dc73fb1cd..40d553f5a 100644 --- a/tests/runner/type_casts/output_25.json +++ b/tests/runner/type_casts/output_25.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_26.json b/tests/runner/type_casts/output_26.json index dc73fb1cd..40d553f5a 100644 --- a/tests/runner/type_casts/output_26.json +++ b/tests/runner/type_casts/output_26.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_27.json b/tests/runner/type_casts/output_27.json index dc73fb1cd..40d553f5a 100644 --- a/tests/runner/type_casts/output_27.json +++ b/tests/runner/type_casts/output_27.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_28.json b/tests/runner/type_casts/output_28.json index a015f128c..116aa8c9f 100644 --- a/tests/runner/type_casts/output_28.json +++ b/tests/runner/type_casts/output_28.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_29.json b/tests/runner/type_casts/output_29.json index a015f128c..116aa8c9f 100644 --- a/tests/runner/type_casts/output_29.json +++ b/tests/runner/type_casts/output_29.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_3.json b/tests/runner/type_casts/output_3.json index 8e398fb4e..49f264378 100644 --- a/tests/runner/type_casts/output_3.json +++ b/tests/runner/type_casts/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7950", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_30.json b/tests/runner/type_casts/output_30.json index dc73fb1cd..40d553f5a 100644 --- a/tests/runner/type_casts/output_30.json +++ b/tests/runner/type_casts/output_30.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_31.json b/tests/runner/type_casts/output_31.json index dc73fb1cd..40d553f5a 100644 --- a/tests/runner/type_casts/output_31.json +++ b/tests/runner/type_casts/output_31.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_32.json b/tests/runner/type_casts/output_32.json index dc73fb1cd..40d553f5a 100644 --- a/tests/runner/type_casts/output_32.json +++ b/tests/runner/type_casts/output_32.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_33.json b/tests/runner/type_casts/output_33.json index bcb133d51..bcb01224b 100644 --- a/tests/runner/type_casts/output_33.json +++ b/tests/runner/type_casts/output_33.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_34.json b/tests/runner/type_casts/output_34.json index bcb133d51..bcb01224b 100644 --- a/tests/runner/type_casts/output_34.json +++ b/tests/runner/type_casts/output_34.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7943", + "gas_remaining": "7985", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_35.json b/tests/runner/type_casts/output_35.json index dc73fb1cd..40d553f5a 100644 --- a/tests/runner/type_casts/output_35.json +++ b/tests/runner/type_casts/output_35.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7952", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_36.json b/tests/runner/type_casts/output_36.json index 816aad59e..c9dc0c54e 100644 --- a/tests/runner/type_casts/output_36.json +++ b/tests/runner/type_casts/output_36.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7951", + "gas_remaining": "7994", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_37.json b/tests/runner/type_casts/output_37.json index ae94e7034..d152b6752 100644 --- a/tests/runner/type_casts/output_37.json +++ b/tests/runner/type_casts/output_37.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7940", + "gas_remaining": "7983", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_4.json b/tests/runner/type_casts/output_4.json index 8e398fb4e..49f264378 100644 --- a/tests/runner/type_casts/output_4.json +++ b/tests/runner/type_casts/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7950", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_5.json b/tests/runner/type_casts/output_5.json index 8e398fb4e..49f264378 100644 --- a/tests/runner/type_casts/output_5.json +++ b/tests/runner/type_casts/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7950", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_6.json b/tests/runner/type_casts/output_6.json index a4e9ef6ec..f4eb744b7 100644 --- a/tests/runner/type_casts/output_6.json +++ b/tests/runner/type_casts/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7950", + "gas_remaining": "7992", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_7.json b/tests/runner/type_casts/output_7.json index 961a4e493..41d9a38f9 100644 --- a/tests/runner/type_casts/output_7.json +++ b/tests/runner/type_casts/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7953", + "gas_remaining": "7995", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_8.json b/tests/runner/type_casts/output_8.json index ebefcd86e..d48868efc 100644 --- a/tests/runner/type_casts/output_8.json +++ b/tests/runner/type_casts/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7991", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/type_casts/output_9.json b/tests/runner/type_casts/output_9.json index ebefcd86e..d48868efc 100644 --- a/tests/runner/type_casts/output_9.json +++ b/tests/runner/type_casts/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7948", + "gas_remaining": "7991", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_1.json b/tests/runner/wallet/output_1.json index 442909b94..d03cfa407 100644 --- a/tests/runner/wallet/output_1.json +++ b/tests/runner/wallet/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7898", + "gas_remaining": "7921", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_10.json b/tests/runner/wallet/output_10.json index a090e211f..d0a5531a7 100644 --- a/tests/runner/wallet/output_10.json +++ b/tests/runner/wallet/output_10.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7880", + "gas_remaining": "7924", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_11.json b/tests/runner/wallet/output_11.json index 44c7bd8fe..28ade691b 100644 --- a/tests/runner/wallet/output_11.json +++ b/tests/runner/wallet/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7878", + "gas_remaining": "7902", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_2.json b/tests/runner/wallet/output_2.json index 0a72e2688..f137172a0 100644 --- a/tests/runner/wallet/output_2.json +++ b/tests/runner/wallet/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7922", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_3.json b/tests/runner/wallet/output_3.json index b4c14dd54..7ca593864 100644 --- a/tests/runner/wallet/output_3.json +++ b/tests/runner/wallet/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7879", + "gas_remaining": "7918", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_4.json b/tests/runner/wallet/output_4.json index 71880689e..4c6f56a43 100644 --- a/tests/runner/wallet/output_4.json +++ b/tests/runner/wallet/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7874", + "gas_remaining": "7913", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_5.json b/tests/runner/wallet/output_5.json index 02a57ad89..a49fcf071 100644 --- a/tests/runner/wallet/output_5.json +++ b/tests/runner/wallet/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7848", + "gas_remaining": "7900", "_accepted": "false", "messages": [ { diff --git a/tests/runner/wallet/output_6.json b/tests/runner/wallet/output_6.json index 6f125ea34..d1b2e38be 100644 --- a/tests/runner/wallet/output_6.json +++ b/tests/runner/wallet/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7915", + "gas_remaining": "7939", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_7.json b/tests/runner/wallet/output_7.json index 26760c5bb..ce7e7e5d4 100644 --- a/tests/runner/wallet/output_7.json +++ b/tests/runner/wallet/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7889", + "gas_remaining": "7928", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_8.json b/tests/runner/wallet/output_8.json index 57a413275..29c9a9bc5 100644 --- a/tests/runner/wallet/output_8.json +++ b/tests/runner/wallet/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7883", + "gas_remaining": "7927", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet/output_9.json b/tests/runner/wallet/output_9.json index 53a95f32f..9d225374b 100644 --- a/tests/runner/wallet/output_9.json +++ b/tests/runner/wallet/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7857", + "gas_remaining": "7900", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_1.json b/tests/runner/wallet_2/output_1.json index 76110f6bb..9942bfe92 100644 --- a/tests/runner/wallet_2/output_1.json +++ b/tests/runner/wallet_2/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7891", + "gas_remaining": "7914", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_11.json b/tests/runner/wallet_2/output_11.json index 126f64aa0..279f2e144 100644 --- a/tests/runner/wallet_2/output_11.json +++ b/tests/runner/wallet_2/output_11.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7865", + "gas_remaining": "7904", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_12.json b/tests/runner/wallet_2/output_12.json index 126f64aa0..279f2e144 100644 --- a/tests/runner/wallet_2/output_12.json +++ b/tests/runner/wallet_2/output_12.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7865", + "gas_remaining": "7904", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_14.json b/tests/runner/wallet_2/output_14.json index 78377bdc3..6b657e6f5 100644 --- a/tests/runner/wallet_2/output_14.json +++ b/tests/runner/wallet_2/output_14.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7903", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_15.json b/tests/runner/wallet_2/output_15.json index 78377bdc3..6b657e6f5 100644 --- a/tests/runner/wallet_2/output_15.json +++ b/tests/runner/wallet_2/output_15.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7903", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_16.json b/tests/runner/wallet_2/output_16.json index 78377bdc3..6b657e6f5 100644 --- a/tests/runner/wallet_2/output_16.json +++ b/tests/runner/wallet_2/output_16.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7903", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_17.json b/tests/runner/wallet_2/output_17.json index 3c2f99bdf..5861e9160 100644 --- a/tests/runner/wallet_2/output_17.json +++ b/tests/runner/wallet_2/output_17.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7856", + "gas_remaining": "7895", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_18.json b/tests/runner/wallet_2/output_18.json index a816699f4..cc9ae7de1 100644 --- a/tests/runner/wallet_2/output_18.json +++ b/tests/runner/wallet_2/output_18.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7856", + "gas_remaining": "7895", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_19.json b/tests/runner/wallet_2/output_19.json index f08a1f30f..768fd3b05 100644 --- a/tests/runner/wallet_2/output_19.json +++ b/tests/runner/wallet_2/output_19.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7856", + "gas_remaining": "7895", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_2.json b/tests/runner/wallet_2/output_2.json index 4cae32219..d32add914 100644 --- a/tests/runner/wallet_2/output_2.json +++ b/tests/runner/wallet_2/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7891", + "gas_remaining": "7914", "_accepted": "true", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_20.json b/tests/runner/wallet_2/output_20.json index cda3e72e6..2bc3e625c 100644 --- a/tests/runner/wallet_2/output_20.json +++ b/tests/runner/wallet_2/output_20.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7856", + "gas_remaining": "7895", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_21.json b/tests/runner/wallet_2/output_21.json index 3d0714678..1ef5075e2 100644 --- a/tests/runner/wallet_2/output_21.json +++ b/tests/runner/wallet_2/output_21.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7904", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_22.json b/tests/runner/wallet_2/output_22.json index 78377bdc3..ef4889e09 100644 --- a/tests/runner/wallet_2/output_22.json +++ b/tests/runner/wallet_2/output_22.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7904", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_23.json b/tests/runner/wallet_2/output_23.json index 78377bdc3..ef4889e09 100644 --- a/tests/runner/wallet_2/output_23.json +++ b/tests/runner/wallet_2/output_23.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7904", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_24.json b/tests/runner/wallet_2/output_24.json index 8caae94b0..6e8076b2a 100644 --- a/tests/runner/wallet_2/output_24.json +++ b/tests/runner/wallet_2/output_24.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7853", + "gas_remaining": "7893", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_25.json b/tests/runner/wallet_2/output_25.json index e010bdc53..6a7add7ab 100644 --- a/tests/runner/wallet_2/output_25.json +++ b/tests/runner/wallet_2/output_25.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7850", + "gas_remaining": "7889", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_26.json b/tests/runner/wallet_2/output_26.json index 0d6657a6e..af579f628 100644 --- a/tests/runner/wallet_2/output_26.json +++ b/tests/runner/wallet_2/output_26.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7850", + "gas_remaining": "7889", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_27.json b/tests/runner/wallet_2/output_27.json index c3d4eedeb..e399af61f 100644 --- a/tests/runner/wallet_2/output_27.json +++ b/tests/runner/wallet_2/output_27.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7848", + "gas_remaining": "7888", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_28.json b/tests/runner/wallet_2/output_28.json index cdaec0641..5c275f187 100644 --- a/tests/runner/wallet_2/output_28.json +++ b/tests/runner/wallet_2/output_28.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7819", + "gas_remaining": "7858", "_accepted": "false", "messages": [ { diff --git a/tests/runner/wallet_2/output_29.json b/tests/runner/wallet_2/output_29.json index cdaec0641..5c275f187 100644 --- a/tests/runner/wallet_2/output_29.json +++ b/tests/runner/wallet_2/output_29.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7819", + "gas_remaining": "7858", "_accepted": "false", "messages": [ { diff --git a/tests/runner/wallet_2/output_3.json b/tests/runner/wallet_2/output_3.json index 7039492b2..229950cd5 100644 --- a/tests/runner/wallet_2/output_3.json +++ b/tests/runner/wallet_2/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7833", + "gas_remaining": "7904", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_30.json b/tests/runner/wallet_2/output_30.json index ee666358d..8422a45a6 100644 --- a/tests/runner/wallet_2/output_30.json +++ b/tests/runner/wallet_2/output_30.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7819", + "gas_remaining": "7858", "_accepted": "false", "messages": [ { diff --git a/tests/runner/wallet_2/output_31.json b/tests/runner/wallet_2/output_31.json index cdaec0641..5c275f187 100644 --- a/tests/runner/wallet_2/output_31.json +++ b/tests/runner/wallet_2/output_31.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7819", + "gas_remaining": "7858", "_accepted": "false", "messages": [ { diff --git a/tests/runner/wallet_2/output_32.json b/tests/runner/wallet_2/output_32.json index 662d4c4ae..28623425c 100644 --- a/tests/runner/wallet_2/output_32.json +++ b/tests/runner/wallet_2/output_32.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7819", + "gas_remaining": "7858", "_accepted": "false", "messages": [ { diff --git a/tests/runner/wallet_2/output_33.json b/tests/runner/wallet_2/output_33.json index 7ede8b104..82e003f70 100644 --- a/tests/runner/wallet_2/output_33.json +++ b/tests/runner/wallet_2/output_33.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7903", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_34.json b/tests/runner/wallet_2/output_34.json index b050a0822..b4d15127e 100644 --- a/tests/runner/wallet_2/output_34.json +++ b/tests/runner/wallet_2/output_34.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7903", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_35.json b/tests/runner/wallet_2/output_35.json index b050a0822..b4d15127e 100644 --- a/tests/runner/wallet_2/output_35.json +++ b/tests/runner/wallet_2/output_35.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7903", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_36.json b/tests/runner/wallet_2/output_36.json index b050a0822..b4d15127e 100644 --- a/tests/runner/wallet_2/output_36.json +++ b/tests/runner/wallet_2/output_36.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7903", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_37.json b/tests/runner/wallet_2/output_37.json index b050a0822..b4d15127e 100644 --- a/tests/runner/wallet_2/output_37.json +++ b/tests/runner/wallet_2/output_37.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7864", + "gas_remaining": "7903", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_38.json b/tests/runner/wallet_2/output_38.json index 2bd3c6b34..153181cc6 100644 --- a/tests/runner/wallet_2/output_38.json +++ b/tests/runner/wallet_2/output_38.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7863", + "gas_remaining": "7902", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_39.json b/tests/runner/wallet_2/output_39.json index 34d1e3a2b..f33aff96f 100644 --- a/tests/runner/wallet_2/output_39.json +++ b/tests/runner/wallet_2/output_39.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7863", + "gas_remaining": "7902", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_4.json b/tests/runner/wallet_2/output_4.json index 36b2c82a5..c18cd8eba 100644 --- a/tests/runner/wallet_2/output_4.json +++ b/tests/runner/wallet_2/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7799", + "gas_remaining": "7870", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_40.json b/tests/runner/wallet_2/output_40.json index c4edad842..60db7551a 100644 --- a/tests/runner/wallet_2/output_40.json +++ b/tests/runner/wallet_2/output_40.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7863", + "gas_remaining": "7902", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_42.json b/tests/runner/wallet_2/output_42.json index e0e884c47..12d52e75d 100644 --- a/tests/runner/wallet_2/output_42.json +++ b/tests/runner/wallet_2/output_42.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7819", + "gas_remaining": "7858", "_accepted": "false", "messages": [ { diff --git a/tests/runner/wallet_2/output_5.json b/tests/runner/wallet_2/output_5.json index 3c08e53f6..f4dc23257 100644 --- a/tests/runner/wallet_2/output_5.json +++ b/tests/runner/wallet_2/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7799", + "gas_remaining": "7870", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_6.json b/tests/runner/wallet_2/output_6.json index 0221205fc..430b60354 100644 --- a/tests/runner/wallet_2/output_6.json +++ b/tests/runner/wallet_2/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7833", + "gas_remaining": "7904", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_7.json b/tests/runner/wallet_2/output_7.json index b34389897..c4d170d6f 100644 --- a/tests/runner/wallet_2/output_7.json +++ b/tests/runner/wallet_2/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7798", + "gas_remaining": "7870", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/wallet_2/output_8.json b/tests/runner/wallet_2/output_8.json index bb7516330..1465aa896 100644 --- a/tests/runner/wallet_2/output_8.json +++ b/tests/runner/wallet_2/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7831", + "gas_remaining": "7901", "_accepted": "false", "messages": [], "states": [ diff --git a/tests/runner/zil-game/output_1.json b/tests/runner/zil-game/output_1.json index 9a6d2a5bd..6e700f958 100644 --- a/tests/runner/zil-game/output_1.json +++ b/tests/runner/zil-game/output_1.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7903", + "gas_remaining": "7948", "_accepted": "false", "messages": [ { diff --git a/tests/runner/zil-game/output_2.json b/tests/runner/zil-game/output_2.json index 59df9de4b..417a006a0 100644 --- a/tests/runner/zil-game/output_2.json +++ b/tests/runner/zil-game/output_2.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7921", + "gas_remaining": "7959", "_accepted": "false", "messages": [ { diff --git a/tests/runner/zil-game/output_3.json b/tests/runner/zil-game/output_3.json index 8175a4eff..6ec234354 100644 --- a/tests/runner/zil-game/output_3.json +++ b/tests/runner/zil-game/output_3.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7915", + "gas_remaining": "7960", "_accepted": "false", "messages": [ { diff --git a/tests/runner/zil-game/output_4.json b/tests/runner/zil-game/output_4.json index c6921330b..5c623b4e4 100644 --- a/tests/runner/zil-game/output_4.json +++ b/tests/runner/zil-game/output_4.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7906", + "gas_remaining": "7944", "_accepted": "false", "messages": [ { diff --git a/tests/runner/zil-game/output_5.json b/tests/runner/zil-game/output_5.json index 0cb2c1cda..5f393f151 100644 --- a/tests/runner/zil-game/output_5.json +++ b/tests/runner/zil-game/output_5.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7910", + "gas_remaining": "7948", "_accepted": "false", "messages": [ { diff --git a/tests/runner/zil-game/output_6.json b/tests/runner/zil-game/output_6.json index ce7c13bb1..2d1c4e8a6 100644 --- a/tests/runner/zil-game/output_6.json +++ b/tests/runner/zil-game/output_6.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7902", + "gas_remaining": "7940", "_accepted": "false", "messages": [ { diff --git a/tests/runner/zil-game/output_7.json b/tests/runner/zil-game/output_7.json index 31cd640d2..7c1dacd08 100644 --- a/tests/runner/zil-game/output_7.json +++ b/tests/runner/zil-game/output_7.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7930", + "gas_remaining": "7953", "_accepted": "false", "messages": [ { diff --git a/tests/runner/zil-game/output_8.json b/tests/runner/zil-game/output_8.json index e46eb0bba..8fecc4c19 100644 --- a/tests/runner/zil-game/output_8.json +++ b/tests/runner/zil-game/output_8.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7935", + "gas_remaining": "7958", "_accepted": "false", "messages": [ { diff --git a/tests/runner/zil-game/output_9.json b/tests/runner/zil-game/output_9.json index 3765fa85c..19ea26960 100644 --- a/tests/runner/zil-game/output_9.json +++ b/tests/runner/zil-game/output_9.json @@ -1,6 +1,6 @@ { "scilla_major_version": "0", - "gas_remaining": "7935", + "gas_remaining": "7958", "_accepted": "false", "messages": [ {