diff --git a/src/proto_alpha/lib_plugin/plugin.ml b/src/proto_alpha/lib_plugin/plugin.ml index 776617f192eb6c00f3e0968c7580ed2d08ccecc1..95f149728440ce15651b3e122f42c107ffa8f40c 100644 --- a/src/proto_alpha/lib_plugin/plugin.ml +++ b/src/proto_alpha/lib_plugin/plugin.ml @@ -2182,14 +2182,16 @@ module RPC = struct parse_toplevel ctxt ~legacy expr >>=? fun ({arg_type; root_name; _}, ctxt) -> Lwt.return - ( ( parse_parameter_ty ctxt ~legacy arg_type - >>? fun (Ex_ty arg_type, _) -> - Script_ir_translator.find_entrypoint - ~error_details:Informative - ~root_name - arg_type - entrypoint ) - >>? fun (_f, Ex_ty ty) -> + ( parse_parameter_ty ctxt ~legacy arg_type + >>? fun (Ex_ty arg_type, _) -> + Gas_monad.run ctxt + @@ Script_ir_translator.find_entrypoint + ~error_details:Informative + ~root_name + arg_type + entrypoint + >>? fun (r, ctxt) -> + r >>? fun (_f, Ex_ty ty) -> unparse_ty ~loc:() ctxt ty >|? fun (ty_node, _) -> Micheline.strip_locations ty_node ) in diff --git a/src/proto_alpha/lib_protocol/contract_services.ml b/src/proto_alpha/lib_protocol/contract_services.ml index 239121808a6e154ebc3d9c3df94ac0097114a5af..95905a392922184e70c21ead7bfd2d5b69b9c04c 100644 --- a/src/proto_alpha/lib_protocol/contract_services.ml +++ b/src/proto_alpha/lib_protocol/contract_services.ml @@ -367,18 +367,20 @@ let[@coq_axiom_with_reason "gadt"] register () = parse_toplevel ctxt ~legacy expr >>=? fun ({arg_type; root_name; _}, ctxt) -> Lwt.return - (( parse_parameter_ty ctxt ~legacy arg_type - >>? fun (Ex_ty arg_type, _) -> - Script_ir_translator.find_entrypoint - ~error_details:Informative - ~root_name - arg_type - entrypoint ) - |> function - | Ok (_f, Ex_ty ty) -> - unparse_ty ~loc:() ctxt ty >|? fun (ty_node, _) -> - Some (Micheline.strip_locations ty_node) - | Error _ -> Result.return_none)) ; + ( parse_parameter_ty ctxt ~legacy arg_type + >>? fun (Ex_ty arg_type, _) -> + Gas_monad.run ctxt + @@ Script_ir_translator.find_entrypoint + ~error_details:Informative + ~root_name + arg_type + entrypoint + >>? fun (r, ctxt) -> + r |> function + | Ok (_f, Ex_ty ty) -> + unparse_ty ~loc:() ctxt ty >|? fun (ty_node, _) -> + Some (Micheline.strip_locations ty_node) + | Error _ -> Result.return_none )) ; opt_register1 ~chunked:true S.list_entrypoints (fun ctxt v () () -> Contract.get_script_code ctxt v >>=? fun (_, expr) -> match expr with diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml index fec8bcee756298a4289590ac93058cc8c43496d9..e75d9db05e2d81a87e7efd68178278399f4c9010 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml @@ -949,6 +949,11 @@ module Cost_of = struct (* TODO: benchmark *) let cost_COMPARABLE_TY_OF_TY = S.safe_int 120 + (* TODO: https://gitlab.com/tezos/tezos/-/issues/2264 + Benchmark. + Currently approximated by 2 comparisons of the longest entrypoint. *) + let cost_FIND_ENTRYPOINT = S.mul (S.safe_int 2) (cost_N_ICompare 31 31) + (* model SAPLING_TRANSACTION_ENCODING *) let cost_SAPLING_TRANSACTION_ENCODING ~inputs ~outputs = S.safe_int (1500 + (inputs * 160) + (outputs * 320)) @@ -1677,6 +1682,8 @@ module Cost_of = struct (* TODO: bench *) let check_dupable_cycle = atomic_step_cost cost_TYPECHECKING_DATA + let find_entrypoint_cycle = atomic_step_cost cost_FIND_ENTRYPOINT + let bool = free let unit = free diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.mli b/src/proto_alpha/lib_protocol/michelson_v1_gas.mli index bc831637509877b993c678b86f8e7195e5795cd4..f9c7fab2ca3d83286ea654d5ec7c587a503256ad 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.mli +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.mli @@ -435,6 +435,8 @@ module Cost_of : sig val check_dupable_cycle : Gas.cost + val find_entrypoint_cycle : Gas.cost + val bool : Gas.cost val unit : Gas.cost diff --git a/src/proto_alpha/lib_protocol/script_interpreter.ml b/src/proto_alpha/lib_protocol/script_interpreter.ml index 13db0be58c6798654637411024afdaddd22fe38a..b0ca163de6c1152b0064758756bbc01ef6f484b5 100644 --- a/src/proto_alpha/lib_protocol/script_interpreter.ml +++ b/src/proto_alpha/lib_protocol/script_interpreter.ml @@ -1699,9 +1699,11 @@ let execute logger ctxt mode step_constants ~entrypoint ~internal views; }, ctxt ) -> - record_trace - (Bad_contract_parameter step_constants.self) + Gas_monad.run + ctxt (find_entrypoint ~error_details:Informative arg_type ~root_name entrypoint) + >>?= fun (r, ctxt) -> + record_trace (Bad_contract_parameter step_constants.self) r >>?= fun (box, _) -> trace (Bad_contract_parameter step_constants.self) diff --git a/src/proto_alpha/lib_protocol/script_ir_translator.ml b/src/proto_alpha/lib_protocol/script_ir_translator.ml index f6806f9b93f9d075991aa060679e663b14207f91..9980521c521905d1609353418082085c8b3da376 100644 --- a/src/proto_alpha/lib_protocol/script_ir_translator.ml +++ b/src/proto_alpha/lib_protocol/script_ir_translator.ml @@ -1802,48 +1802,53 @@ type 'before dup_n_proof_argument = let find_entrypoint (type full error_trace) ~(error_details : error_trace error_details) (full : full ty) ~root_name - entrypoint : ((Script.node -> Script.node) * ex_ty, error_trace) result = + entrypoint : ((Script.node -> Script.node) * ex_ty, error_trace) Gas_monad.t + = + let open Gas_monad in let loc = Micheline.dummy_location in let rec find_entrypoint : type t. - t ty -> Entrypoint.t -> ((Script.node -> Script.node) * ex_ty) option = + t ty -> + Entrypoint.t -> + ((Script.node -> Script.node) * ex_ty, unit) Gas_monad.t = fun t entrypoint -> match t with | Union_t ((tl, al), (tr, ar), _) -> ( + consume_gas Typecheck_costs.find_entrypoint_cycle >>$ fun () -> if field_annot_opt_eq_entrypoint_lax al entrypoint then - Some ((fun e -> Prim (loc, D_Left, [e], [])), Ex_ty tl) + return ((fun e -> Prim (loc, D_Left, [e], [])), Ex_ty tl) else if field_annot_opt_eq_entrypoint_lax ar entrypoint then - Some ((fun e -> Prim (loc, D_Right, [e], [])), Ex_ty tr) + return ((fun e -> Prim (loc, D_Right, [e], [])), Ex_ty tr) else - match find_entrypoint tl entrypoint with - | Some (f, t) -> Some ((fun e -> Prim (loc, D_Left, [f e], [])), t) - | None -> ( - match find_entrypoint tr entrypoint with - | Some (f, t) -> - Some ((fun e -> Prim (loc, D_Right, [f e], [])), t) - | None -> None)) - | _ -> None + find_entrypoint tl entrypoint >??$ function + | Ok (f, t) -> return ((fun e -> Prim (loc, D_Left, [f e], [])), t) + | Error () -> + find_entrypoint tr entrypoint >|$ fun (f, t) -> + ((fun e -> Prim (loc, D_Right, [f e], [])), t)) + | _ -> of_result (Error ()) in + (* This comparison should be taken into account by the caller. *) if field_annot_opt_eq_entrypoint_lax root_name entrypoint then - ok ((fun e -> e), Ex_ty full) + return ((fun e -> e), Ex_ty full) else - match find_entrypoint full entrypoint with - | Some result -> ok result - | None -> - if Entrypoint.is_default entrypoint then ok ((fun e -> e), Ex_ty full) + find_entrypoint full entrypoint >??$ function + | Ok result -> return result + | Error () -> + if Entrypoint.is_default entrypoint then + return ((fun e -> e), Ex_ty full) else - Error - (match error_details with - | Fast -> (Inconsistent_types_fast : error_trace) - | Informative -> trace_of_error @@ No_such_entrypoint entrypoint) + of_result + @@ Error + (match error_details with + | Fast -> (Inconsistent_types_fast : error_trace) + | Informative -> trace_of_error @@ No_such_entrypoint entrypoint) let find_entrypoint_for_type (type full exp error_trace) ~legacy ~error_details ~(full : full ty) ~(expected : exp ty) ~root_name entrypoint loc : (Entrypoint.t * exp ty, error_trace) Gas_monad.t = let open Gas_monad in - match find_entrypoint ~error_details full ~root_name entrypoint with - | Error _ as err -> of_result err - | Ok (_, Ex_ty ty) -> ( + find_entrypoint ~error_details full ~root_name entrypoint >>$ function + | (_, Ex_ty ty) -> ( match root_name with | Some (Field_annot fa) when Compare.String.((fa :> string) = "root") @@ -4575,12 +4580,14 @@ and[@coq_axiom_with_reason "gadt"] parse_instr : error (Forbidden_instr_in_context (loc, Script_tc_errors.View, prim)) | Toplevel {param_type; root_name; storage_type = _} -> - find_entrypoint - ~error_details:Informative - param_type - ~root_name - entrypoint - >>? fun (_, Ex_ty param_type) -> + Gas_monad.run ctxt + @@ find_entrypoint + ~error_details:Informative + param_type + ~root_name + entrypoint + >>? fun (r, ctxt) -> + r >>? fun (_, Ex_ty param_type) -> contract_t loc param_type >>? fun res_ty -> let instr = { diff --git a/src/proto_alpha/lib_protocol/script_ir_translator.mli b/src/proto_alpha/lib_protocol/script_ir_translator.mli index 41d1db2e7acc6cc744b4c6f01a83f4ebca5f444d..610231722f45a605c514de76cc584a558108ca23 100644 --- a/src/proto_alpha/lib_protocol/script_ir_translator.mli +++ b/src/proto_alpha/lib_protocol/script_ir_translator.mli @@ -409,7 +409,7 @@ val find_entrypoint : 't Script_typed_ir.ty -> root_name:Script_ir_annot.field_annot option -> Entrypoint.t -> - ((Script.node -> Script.node) * ex_ty, 'error_trace) result + ((Script.node -> Script.node) * ex_ty, 'error_trace) Gas_monad.t val list_entrypoints : 't Script_typed_ir.ty -> diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out index 8a5ab4cef036358eed451e8441a1f9b9a1ded026..51cfc2b461838b41a25aecc76795a3a705123462 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[mini_scenarios--generic_multisig.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[mini_scenarios/generic_multisig.tz] Well typed -Gas remaining: 1039928.421 units remaining +Gas remaining: 1039928.351 units remaining { parameter (or (unit %default) (pair %main diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out index 58940cbf64795fdefaed46b40e6687aae7ab95ab..0a2663151c54b9b8c4a8164c5b308067eb7eb372 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--big_map_to_self.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/big_map_to_self.tz] Well typed -Gas remaining: 1039984.417 units remaining +Gas remaining: 1039984.347 units remaining { parameter (or (pair %have_fun (big_map string nat) unit) (unit %default)) ; storage (big_map string nat) ; code { UNPAIR diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out index 5b31d4f735d5f08534af35764e07c2ebcfd0023a..c5f864996ab4d030dcc3792ff1e69b2e0aa71d74 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_default_entrypoint.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_default_entrypoint.tz] Well typed -Gas remaining: 1039988.615 units remaining +Gas remaining: 1039987.845 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %default) (string %C))) ; storage unit ; code { DROP diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out index 41cd05c68ad0fb3536c9ffa998f5f62157a8237a..3f83a05f3a518fb8a92eaab4a57eb8b57a14c3d9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract.TestTypecheck::test_typecheck[opcodes--self_with_entrypoint.tz].out @@ -1,7 +1,7 @@ tests_alpha/test_contract.py::TestTypecheck::test_typecheck[opcodes/self_with_entrypoint.tz] Well typed -Gas remaining: 1039967.216 units remaining +Gas remaining: 1039965.676 units remaining { parameter (or (or (nat %A) (bool %B)) (or %maybe_C (unit %Z) (string %C))) ; storage unit ; code { DROP diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" index a5fd94e28f30263f747116f0243ce1b90e8e1cf0..b9c96dabc1dd79d014ec3b7f6b47ad0293dfa0bb 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }) )-(Right (Righ.7492e8cdea.out" @@ -11,80 +11,80 @@ big_map diff Set map(4)["3"] to "three" Set map(4)["1"] to "one" trace - - location: 43 (remaining gas: 1039916.593 units remaining) + - location: 43 (remaining gas: 1039916.243 units remaining) [ (Pair (Right (Right (Right (Left { Pair "3" "three" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039916.583 units remaining) + - location: 43 (remaining gas: 1039916.233 units remaining) [ (Right (Right (Right (Left { Pair "3" "three" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039916.573 units remaining) + - location: 44 (remaining gas: 1039916.223 units remaining) [ (Right (Right (Left { Pair "3" "three" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039916.563 units remaining) + - location: 60 (remaining gas: 1039916.213 units remaining) [ (Right (Left { Pair "3" "three" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039916.553 units remaining) + - location: 65 (remaining gas: 1039916.203 units remaining) [ (Left { Pair "3" "three" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039916.543 units remaining) + - location: 108 (remaining gas: 1039916.193 units remaining) [ { Pair "3" "three" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 110 (remaining gas: 1039916.528 units remaining) + - location: 110 (remaining gas: 1039916.178 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 113 (remaining gas: 1039916.518 units remaining) + - location: 113 (remaining gas: 1039916.168 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 113 (remaining gas: 1039916.503 units remaining) + - location: 113 (remaining gas: 1039916.153 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 119 (remaining gas: 1039916.493 units remaining) + - location: 119 (remaining gas: 1039916.143 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 110 (remaining gas: 1039916.463 units remaining) + - location: 110 (remaining gas: 1039916.113 units remaining) [ { Pair "3" "three" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039916.463 units remaining) + - location: 120 (remaining gas: 1039916.113 units remaining) [ (Pair "3" "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 122 (remaining gas: 1039916.453 units remaining) + - location: 122 (remaining gas: 1039916.103 units remaining) [ "3" "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039916.438 units remaining) + - location: 123 (remaining gas: 1039916.088 units remaining) [ "three" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 125 (remaining gas: 1039916.423 units remaining) + - location: 125 (remaining gas: 1039916.073 units remaining) [ (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 123 (remaining gas: 1039916.393 units remaining) + - location: 123 (remaining gas: 1039916.043 units remaining) [ "3" (Some "three") { Elt "1" "one" } { Elt "2" "two" } ] - - location: 126 (remaining gas: 1039915.461 units remaining) + - location: 126 (remaining gas: 1039915.111 units remaining) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 120 (remaining gas: 1039915.446 units remaining) + - location: 120 (remaining gas: 1039915.096 units remaining) [ { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" } ] - - location: 127 (remaining gas: 1039915.431 units remaining) + - location: 127 (remaining gas: 1039915.081 units remaining) [ (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }) ] - - location: 128 (remaining gas: 1039915.416 units remaining) + - location: 128 (remaining gas: 1039915.066 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039915.401 units remaining) + - location: 108 (remaining gas: 1039915.051 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039915.386 units remaining) + - location: 65 (remaining gas: 1039915.036 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039915.371 units remaining) + - location: 60 (remaining gas: 1039915.021 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039915.356 units remaining) + - location: 44 (remaining gas: 1039915.006 units remaining) [ (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039915.341 units remaining) + - location: 151 (remaining gas: 1039914.991 units remaining) [ {} (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039915.326 units remaining) + - location: 153 (remaining gas: 1039914.976 units remaining) [ (Pair {} (Left (Pair { Elt "1" "one" ; Elt "3" "three" } { Elt "2" "two" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" index c21de0497c039290f64ad0a7047daf85cb3fc010..b047481e0954e345691b49fbbebe7f704476a21a 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Left Unit)-(.21b30dd90f.out" @@ -10,35 +10,35 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["2"] to "two" trace - - location: 43 (remaining gas: 1039917.501 units remaining) + - location: 43 (remaining gas: 1039917.151 units remaining) [ (Pair (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039917.491 units remaining) + - location: 43 (remaining gas: 1039917.141 units remaining) [ (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039917.481 units remaining) + - location: 44 (remaining gas: 1039917.131 units remaining) [ Unit (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 46 (remaining gas: 1039917.471 units remaining) + - location: 46 (remaining gas: 1039917.121 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 48 (remaining gas: 1039917.461 units remaining) + - location: 48 (remaining gas: 1039917.111 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 48 (remaining gas: 1039917.446 units remaining) + - location: 48 (remaining gas: 1039917.096 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 54 (remaining gas: 1039917.436 units remaining) + - location: 54 (remaining gas: 1039917.086 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 55 (remaining gas: 1039917.426 units remaining) + - location: 55 (remaining gas: 1039917.076 units remaining) [ { Elt "2" "two" } { Elt "1" "one" } ] - - location: 56 (remaining gas: 1039917.411 units remaining) + - location: 56 (remaining gas: 1039917.061 units remaining) [ (Pair { Elt "2" "two" } { Elt "1" "one" }) ] - - location: 57 (remaining gas: 1039917.396 units remaining) + - location: 57 (remaining gas: 1039917.046 units remaining) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 44 (remaining gas: 1039917.381 units remaining) + - location: 44 (remaining gas: 1039917.031 units remaining) [ (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 151 (remaining gas: 1039917.366 units remaining) + - location: 151 (remaining gas: 1039917.016 units remaining) [ {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" })) ] - - location: 153 (remaining gas: 1039917.351 units remaining) + - location: 153 (remaining gas: 1039917.001 units remaining) [ (Pair {} (Left (Pair { Elt "2" "two" } { Elt "1" "one" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" index b632f89aff9d766e371b8dcf2de1b47937f52469..1bca3d9352dd42fdc6818dd0cea22dcdf0eac7ed 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .2873ef610c.out" @@ -10,30 +10,30 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["3"] to "three" trace - - location: 43 (remaining gas: 1039913.797 units remaining) + - location: 43 (remaining gas: 1039913.447 units remaining) [ (Pair (Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039913.787 units remaining) + - location: 43 (remaining gas: 1039913.437 units remaining) [ (Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039913.777 units remaining) + - location: 44 (remaining gas: 1039913.427 units remaining) [ (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039913.767 units remaining) + - location: 60 (remaining gas: 1039913.417 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (remaining gas: 1039913.757 units remaining) + - location: 62 (remaining gas: 1039913.407 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 63 (remaining gas: 1039913.747 units remaining) + - location: 63 (remaining gas: 1039913.397 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 60 (remaining gas: 1039913.732 units remaining) + - location: 60 (remaining gas: 1039913.382 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 44 (remaining gas: 1039913.717 units remaining) + - location: 44 (remaining gas: 1039913.367 units remaining) [ (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 151 (remaining gas: 1039913.702 units remaining) + - location: 151 (remaining gas: 1039913.352 units remaining) [ {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" })) ] - - location: 153 (remaining gas: 1039913.687 units remaining) + - location: 153 (remaining gas: 1039913.337 units remaining) [ (Pair {} (Left (Pair { Elt "3" "three" } { Elt "4" "four" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" index a3d2c6c6e05ef9ac9ebd0d956edbb35ae63d633d..71807603c0db429daa108637398877aa8f940e30 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Left .8a6f480005.out" @@ -7,29 +7,29 @@ emitted operations big_map diff trace - - location: 43 (remaining gas: 1039916.861 units remaining) + - location: 43 (remaining gas: 1039916.511 units remaining) [ (Pair (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039916.851 units remaining) + - location: 43 (remaining gas: 1039916.501 units remaining) [ (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039916.841 units remaining) + - location: 44 (remaining gas: 1039916.491 units remaining) [ (Left (Right Unit)) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039916.831 units remaining) + - location: 60 (remaining gas: 1039916.481 units remaining) [ (Right Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 62 (remaining gas: 1039916.821 units remaining) + - location: 62 (remaining gas: 1039916.471 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) (Right Unit) ] - - location: 63 (remaining gas: 1039916.811 units remaining) + - location: 63 (remaining gas: 1039916.461 units remaining) [ (Right Unit) ] - - location: 60 (remaining gas: 1039916.796 units remaining) + - location: 60 (remaining gas: 1039916.446 units remaining) [ (Right Unit) ] - - location: 44 (remaining gas: 1039916.781 units remaining) + - location: 44 (remaining gas: 1039916.431 units remaining) [ (Right Unit) ] - - location: 151 (remaining gas: 1039916.766 units remaining) + - location: 151 (remaining gas: 1039916.416 units remaining) [ {} (Right Unit) ] - - location: 153 (remaining gas: 1039916.751 units remaining) + - location: 153 (remaining gas: 1039916.401 units remaining) [ (Pair {} (Right Unit)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" index 2bc1e13b5b78ab403cf69b0dca3f154fe1b07bf0..001fcc066650b03d3d1899657da9d9da0da82f3b 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Left (Pair { Elt \"1\" \"one\" } { Elt \"2\" \"two\" }))-(Right (Right.d336ca1903.out" @@ -10,74 +10,74 @@ big_map diff New map(4) of type (big_map string string) Unset map(4)["1"] trace - - location: 43 (remaining gas: 1039916.857 units remaining) + - location: 43 (remaining gas: 1039916.507 units remaining) [ (Pair (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - - location: 43 (remaining gas: 1039916.847 units remaining) + - location: 43 (remaining gas: 1039916.497 units remaining) [ (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039916.837 units remaining) + - location: 44 (remaining gas: 1039916.487 units remaining) [ (Right (Right (Right { "1" }))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039916.827 units remaining) + - location: 60 (remaining gas: 1039916.477 units remaining) [ (Right (Right { "1" })) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039916.817 units remaining) + - location: 65 (remaining gas: 1039916.467 units remaining) [ (Right { "1" }) (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039916.807 units remaining) + - location: 108 (remaining gas: 1039916.457 units remaining) [ { "1" } (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 131 (remaining gas: 1039916.792 units remaining) + - location: 131 (remaining gas: 1039916.442 units remaining) [ (Left (Pair { Elt "1" "one" } { Elt "2" "two" })) ] - - location: 134 (remaining gas: 1039916.782 units remaining) + - location: 134 (remaining gas: 1039916.432 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 134 (remaining gas: 1039916.767 units remaining) + - location: 134 (remaining gas: 1039916.417 units remaining) [ (Pair { Elt "1" "one" } { Elt "2" "two" }) ] - - location: 140 (remaining gas: 1039916.757 units remaining) + - location: 140 (remaining gas: 1039916.407 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 131 (remaining gas: 1039916.727 units remaining) + - location: 131 (remaining gas: 1039916.377 units remaining) [ { "1" } { Elt "1" "one" } { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039916.727 units remaining) + - location: 141 (remaining gas: 1039916.377 units remaining) [ "1" { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039916.712 units remaining) + - location: 143 (remaining gas: 1039916.362 units remaining) [ { Elt "1" "one" } { Elt "2" "two" } ] - - location: 145 (remaining gas: 1039916.697 units remaining) + - location: 145 (remaining gas: 1039916.347 units remaining) [ None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 143 (remaining gas: 1039916.667 units remaining) + - location: 143 (remaining gas: 1039916.317 units remaining) [ "1" None { Elt "1" "one" } { Elt "2" "two" } ] - - location: 147 (remaining gas: 1039915.735 units remaining) + - location: 147 (remaining gas: 1039915.385 units remaining) [ {} { Elt "2" "two" } ] - - location: 141 (remaining gas: 1039915.720 units remaining) + - location: 141 (remaining gas: 1039915.370 units remaining) [ {} { Elt "2" "two" } ] - - location: 148 (remaining gas: 1039915.705 units remaining) + - location: 148 (remaining gas: 1039915.355 units remaining) [ (Pair {} { Elt "2" "two" }) ] - - location: 149 (remaining gas: 1039915.690 units remaining) + - location: 149 (remaining gas: 1039915.340 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 108 (remaining gas: 1039915.675 units remaining) + - location: 108 (remaining gas: 1039915.325 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 65 (remaining gas: 1039915.660 units remaining) + - location: 65 (remaining gas: 1039915.310 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 60 (remaining gas: 1039915.645 units remaining) + - location: 60 (remaining gas: 1039915.295 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 44 (remaining gas: 1039915.630 units remaining) + - location: 44 (remaining gas: 1039915.280 units remaining) [ (Left (Pair {} { Elt "2" "two" })) ] - - location: 151 (remaining gas: 1039915.615 units remaining) + - location: 151 (remaining gas: 1039915.265 units remaining) [ {} (Left (Pair {} { Elt "2" "two" })) ] - - location: 153 (remaining gas: 1039915.600 units remaining) + - location: 153 (remaining gas: 1039915.250 units remaining) [ (Pair {} (Left (Pair {} { Elt "2" "two" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" index f342fec9091ddf0503be2d682fbd2a9cecd24edd..7612c5ac1487fd566f51f05439d85b3b0cfaa8e8 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_big_map_magic[(Right Unit)-(Right (Right (Left (Pair { Pair \"foo\" \"bar\" } { P.7f2ee47600.out" @@ -10,126 +10,126 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["foo"] to "bar" trace - - location: 43 (remaining gas: 1039919.139 units remaining) + - location: 43 (remaining gas: 1039918.789 units remaining) [ (Pair (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) (Right Unit)) ] - - location: 43 (remaining gas: 1039919.129 units remaining) + - location: 43 (remaining gas: 1039918.779 units remaining) [ (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) (Right Unit) ] - - location: 44 (remaining gas: 1039919.119 units remaining) + - location: 44 (remaining gas: 1039918.769 units remaining) [ (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }))) (Right Unit) ] - - location: 60 (remaining gas: 1039919.109 units remaining) + - location: 60 (remaining gas: 1039918.759 units remaining) [ (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })) (Right Unit) ] - - location: 65 (remaining gas: 1039919.099 units remaining) + - location: 65 (remaining gas: 1039918.749 units remaining) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) (Right Unit) ] - - location: 67 (remaining gas: 1039919.084 units remaining) + - location: 67 (remaining gas: 1039918.734 units remaining) [ (Right Unit) ] - - location: 70 (remaining gas: 1039919.074 units remaining) + - location: 70 (remaining gas: 1039918.724 units remaining) [ Unit ] - - location: 70 (remaining gas: 1039919.059 units remaining) + - location: 70 (remaining gas: 1039918.709 units remaining) [ Unit ] - - location: 76 (remaining gas: 1039919.049 units remaining) + - location: 76 (remaining gas: 1039918.699 units remaining) [ ] - - location: 67 (remaining gas: 1039919.019 units remaining) + - location: 67 (remaining gas: 1039918.669 units remaining) [ (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" }) ] - - location: 77 (remaining gas: 1039919.009 units remaining) + - location: 77 (remaining gas: 1039918.659 units remaining) [ { Pair "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039918.994 units remaining) + - location: 78 (remaining gas: 1039918.644 units remaining) [ { Pair "gaz" "baz" } ] - - location: 80 (remaining gas: 1039918.979 units remaining) + - location: 80 (remaining gas: 1039918.629 units remaining) [ {} { Pair "gaz" "baz" } ] - - location: 78 (remaining gas: 1039918.949 units remaining) + - location: 78 (remaining gas: 1039918.599 units remaining) [ { Pair "foo" "bar" } {} { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039918.949 units remaining) + - location: 83 (remaining gas: 1039918.599 units remaining) [ (Pair "foo" "bar") {} { Pair "gaz" "baz" } ] - - location: 85 (remaining gas: 1039918.939 units remaining) + - location: 85 (remaining gas: 1039918.589 units remaining) [ "foo" "bar" {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039918.924 units remaining) + - location: 86 (remaining gas: 1039918.574 units remaining) [ "bar" {} { Pair "gaz" "baz" } ] - - location: 88 (remaining gas: 1039918.909 units remaining) + - location: 88 (remaining gas: 1039918.559 units remaining) [ (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 86 (remaining gas: 1039918.879 units remaining) + - location: 86 (remaining gas: 1039918.529 units remaining) [ "foo" (Some "bar") {} { Pair "gaz" "baz" } ] - - location: 89 (remaining gas: 1039917.881 units remaining) + - location: 89 (remaining gas: 1039917.531 units remaining) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 83 (remaining gas: 1039917.866 units remaining) + - location: 83 (remaining gas: 1039917.516 units remaining) [ { Elt "foo" "bar" } { Pair "gaz" "baz" } ] - - location: 90 (remaining gas: 1039917.856 units remaining) + - location: 90 (remaining gas: 1039917.506 units remaining) [ { Pair "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039917.841 units remaining) + - location: 91 (remaining gas: 1039917.491 units remaining) [ { Elt "foo" "bar" } ] - - location: 93 (remaining gas: 1039917.826 units remaining) + - location: 93 (remaining gas: 1039917.476 units remaining) [ {} { Elt "foo" "bar" } ] - - location: 91 (remaining gas: 1039917.796 units remaining) + - location: 91 (remaining gas: 1039917.446 units remaining) [ { Pair "gaz" "baz" } {} { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039917.796 units remaining) + - location: 96 (remaining gas: 1039917.446 units remaining) [ (Pair "gaz" "baz") {} { Elt "foo" "bar" } ] - - location: 98 (remaining gas: 1039917.786 units remaining) + - location: 98 (remaining gas: 1039917.436 units remaining) [ "gaz" "baz" {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039917.771 units remaining) + - location: 99 (remaining gas: 1039917.421 units remaining) [ "baz" {} { Elt "foo" "bar" } ] - - location: 101 (remaining gas: 1039917.756 units remaining) + - location: 101 (remaining gas: 1039917.406 units remaining) [ (Some "baz") {} { Elt "foo" "bar" } ] - - location: 99 (remaining gas: 1039917.726 units remaining) + - location: 99 (remaining gas: 1039917.376 units remaining) [ "gaz" (Some "baz") {} { Elt "foo" "bar" } ] - - location: 102 (remaining gas: 1039916.728 units remaining) + - location: 102 (remaining gas: 1039916.378 units remaining) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 96 (remaining gas: 1039916.713 units remaining) + - location: 96 (remaining gas: 1039916.363 units remaining) [ { Elt "gaz" "baz" } { Elt "foo" "bar" } ] - - location: 103 (remaining gas: 1039916.703 units remaining) + - location: 103 (remaining gas: 1039916.353 units remaining) [ { Elt "foo" "bar" } { Elt "gaz" "baz" } ] - - location: 104 (remaining gas: 1039916.688 units remaining) + - location: 104 (remaining gas: 1039916.338 units remaining) [ (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }) ] - - location: 105 (remaining gas: 1039916.673 units remaining) + - location: 105 (remaining gas: 1039916.323 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 65 (remaining gas: 1039916.658 units remaining) + - location: 65 (remaining gas: 1039916.308 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 60 (remaining gas: 1039916.643 units remaining) + - location: 60 (remaining gas: 1039916.293 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 44 (remaining gas: 1039916.628 units remaining) + - location: 44 (remaining gas: 1039916.278 units remaining) [ (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 151 (remaining gas: 1039916.613 units remaining) + - location: 151 (remaining gas: 1039916.263 units remaining) [ {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" })) ] - - location: 153 (remaining gas: 1039916.598 units remaining) + - location: 153 (remaining gas: 1039916.248 units remaining) [ (Pair {} (Left (Pair { Elt "foo" "bar" } { Elt "gaz" "baz" }))) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" index 512b3b74988af0717d4eec45d1d8804afc525d1f..9de674574b4d440e5b7a645bcf75a5cab4bfbd97 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Left True)-(Right True)].out" @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039990.926 units remaining) + - location: 11 (remaining gas: 1039990.856 units remaining) [ (Pair (Left True) (Left "X")) ] - - location: 11 (remaining gas: 1039990.916 units remaining) + - location: 11 (remaining gas: 1039990.846 units remaining) [ (Left True) ] - - location: 12 (remaining gas: 1039990.906 units remaining) + - location: 12 (remaining gas: 1039990.836 units remaining) [ True ] - - location: 14 (remaining gas: 1039990.891 units remaining) + - location: 14 (remaining gas: 1039990.821 units remaining) [ (Right True) ] - - location: 12 (remaining gas: 1039990.876 units remaining) + - location: 12 (remaining gas: 1039990.806 units remaining) [ (Right True) ] - - location: 19 (remaining gas: 1039990.861 units remaining) + - location: 19 (remaining gas: 1039990.791 units remaining) [ {} (Right True) ] - - location: 21 (remaining gas: 1039990.846 units remaining) + - location: 21 (remaining gas: 1039990.776 units remaining) [ (Pair {} (Right True)) ] diff --git "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" index 1a22dd4c63d86c166d7e62d88389d6b95f1b392e..4fa41324bd7be54db3ec3da79a1a84f964407eee 100644 --- "a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" +++ "b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[left_right.tz-(Left \"X\")-(Right \"a\")-(Left \"a\")].out" @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 11 (remaining gas: 1039990.902 units remaining) + - location: 11 (remaining gas: 1039990.832 units remaining) [ (Pair (Right "a") (Left "X")) ] - - location: 11 (remaining gas: 1039990.892 units remaining) + - location: 11 (remaining gas: 1039990.822 units remaining) [ (Right "a") ] - - location: 12 (remaining gas: 1039990.882 units remaining) + - location: 12 (remaining gas: 1039990.812 units remaining) [ "a" ] - - location: 17 (remaining gas: 1039990.867 units remaining) + - location: 17 (remaining gas: 1039990.797 units remaining) [ (Left "a") ] - - location: 12 (remaining gas: 1039990.852 units remaining) + - location: 12 (remaining gas: 1039990.782 units remaining) [ (Left "a") ] - - location: 19 (remaining gas: 1039990.837 units remaining) + - location: 19 (remaining gas: 1039990.767 units remaining) [ {} (Left "a") ] - - location: 21 (remaining gas: 1039990.822 units remaining) + - location: 21 (remaining gas: 1039990.752 units remaining) [ (Pair {} (Left "a")) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out index b7bcb1bd13c451bd9101b560c829270205f9398a..067dc2690f1d200f1def83ca1fdf2413bcd54650 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left -2)-2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.641 units remaining) + - location: 9 (remaining gas: 1039992.571 units remaining) [ (Pair (Left -2) 0) ] - - location: 9 (remaining gas: 1039992.631 units remaining) + - location: 9 (remaining gas: 1039992.561 units remaining) [ (Left -2) ] - - location: 10 (remaining gas: 1039992.621 units remaining) + - location: 10 (remaining gas: 1039992.551 units remaining) [ -2 ] - - location: 12 (remaining gas: 1039992.581 units remaining) + - location: 12 (remaining gas: 1039992.511 units remaining) [ 2 ] - - location: 10 (remaining gas: 1039992.566 units remaining) + - location: 10 (remaining gas: 1039992.496 units remaining) [ 2 ] - - location: 15 (remaining gas: 1039992.551 units remaining) + - location: 15 (remaining gas: 1039992.481 units remaining) [ {} 2 ] - - location: 17 (remaining gas: 1039992.536 units remaining) + - location: 17 (remaining gas: 1039992.466 units remaining) [ (Pair {} 2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out index e920ea30d1ed73e0405939d4614b714c00973829..fb41b7c043d523f4d0684a8c5aa27b36323cb8fd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 0)-0].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.641 units remaining) + - location: 9 (remaining gas: 1039992.571 units remaining) [ (Pair (Left 0) 0) ] - - location: 9 (remaining gas: 1039992.631 units remaining) + - location: 9 (remaining gas: 1039992.561 units remaining) [ (Left 0) ] - - location: 10 (remaining gas: 1039992.621 units remaining) + - location: 10 (remaining gas: 1039992.551 units remaining) [ 0 ] - - location: 12 (remaining gas: 1039992.581 units remaining) + - location: 12 (remaining gas: 1039992.511 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039992.566 units remaining) + - location: 10 (remaining gas: 1039992.496 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039992.551 units remaining) + - location: 15 (remaining gas: 1039992.481 units remaining) [ {} 0 ] - - location: 17 (remaining gas: 1039992.536 units remaining) + - location: 17 (remaining gas: 1039992.466 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out index 0e2abe480443c7c337e57fee0072feb91a544aba..cdadc9c23b911a0449d4c4a80a53d1743967ba19 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Left 2)--2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.641 units remaining) + - location: 9 (remaining gas: 1039992.571 units remaining) [ (Pair (Left 2) 0) ] - - location: 9 (remaining gas: 1039992.631 units remaining) + - location: 9 (remaining gas: 1039992.561 units remaining) [ (Left 2) ] - - location: 10 (remaining gas: 1039992.621 units remaining) + - location: 10 (remaining gas: 1039992.551 units remaining) [ 2 ] - - location: 12 (remaining gas: 1039992.581 units remaining) + - location: 12 (remaining gas: 1039992.511 units remaining) [ -2 ] - - location: 10 (remaining gas: 1039992.566 units remaining) + - location: 10 (remaining gas: 1039992.496 units remaining) [ -2 ] - - location: 15 (remaining gas: 1039992.551 units remaining) + - location: 15 (remaining gas: 1039992.481 units remaining) [ {} -2 ] - - location: 17 (remaining gas: 1039992.536 units remaining) + - location: 17 (remaining gas: 1039992.466 units remaining) [ (Pair {} -2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out index 41e4517b3fd8575a5b51acf9daee881213292395..e8a5ec37b0c25c5d893fe41b4c5d8e1e3b8e0a15 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 0)-0].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.641 units remaining) + - location: 9 (remaining gas: 1039992.571 units remaining) [ (Pair (Right 0) 0) ] - - location: 9 (remaining gas: 1039992.631 units remaining) + - location: 9 (remaining gas: 1039992.561 units remaining) [ (Right 0) ] - - location: 10 (remaining gas: 1039992.621 units remaining) + - location: 10 (remaining gas: 1039992.551 units remaining) [ 0 ] - - location: 14 (remaining gas: 1039992.581 units remaining) + - location: 14 (remaining gas: 1039992.511 units remaining) [ 0 ] - - location: 10 (remaining gas: 1039992.566 units remaining) + - location: 10 (remaining gas: 1039992.496 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039992.551 units remaining) + - location: 15 (remaining gas: 1039992.481 units remaining) [ {} 0 ] - - location: 17 (remaining gas: 1039992.536 units remaining) + - location: 17 (remaining gas: 1039992.466 units remaining) [ (Pair {} 0) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out index a86d80d254a5f0bb660d264cead3be465a906619..4798833d1957d725ee830aa7006f25a79e6d0bb5 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[neg.tz-0-(Right 2)--2].out @@ -7,19 +7,19 @@ emitted operations big_map diff trace - - location: 9 (remaining gas: 1039992.641 units remaining) + - location: 9 (remaining gas: 1039992.571 units remaining) [ (Pair (Right 2) 0) ] - - location: 9 (remaining gas: 1039992.631 units remaining) + - location: 9 (remaining gas: 1039992.561 units remaining) [ (Right 2) ] - - location: 10 (remaining gas: 1039992.621 units remaining) + - location: 10 (remaining gas: 1039992.551 units remaining) [ 2 ] - - location: 14 (remaining gas: 1039992.581 units remaining) + - location: 14 (remaining gas: 1039992.511 units remaining) [ -2 ] - - location: 10 (remaining gas: 1039992.566 units remaining) + - location: 10 (remaining gas: 1039992.496 units remaining) [ -2 ] - - location: 15 (remaining gas: 1039992.551 units remaining) + - location: 15 (remaining gas: 1039992.481 units remaining) [ {} -2 ] - - location: 17 (remaining gas: 1039992.536 units remaining) + - location: 17 (remaining gas: 1039992.466 units remaining) [ (Pair {} -2) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out index 236d7e4647f1e0de487226be057642b8eac7281d..5c2f2897056a6b33caa30bbb81cfac9a6659f1f1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -8)-(Some 7)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.640 units remaining) + - location: 10 (remaining gas: 1039991.570 units remaining) [ (Pair (Left -8) None) ] - - location: 10 (remaining gas: 1039991.630 units remaining) + - location: 10 (remaining gas: 1039991.560 units remaining) [ (Left -8) ] - - location: 11 (remaining gas: 1039991.620 units remaining) + - location: 11 (remaining gas: 1039991.550 units remaining) [ -8 ] - - location: 13 (remaining gas: 1039991.570 units remaining) + - location: 13 (remaining gas: 1039991.500 units remaining) [ 7 ] - - location: 11 (remaining gas: 1039991.555 units remaining) + - location: 11 (remaining gas: 1039991.485 units remaining) [ 7 ] - - location: 16 (remaining gas: 1039991.540 units remaining) + - location: 16 (remaining gas: 1039991.470 units remaining) [ (Some 7) ] - - location: 17 (remaining gas: 1039991.525 units remaining) + - location: 17 (remaining gas: 1039991.455 units remaining) [ {} (Some 7) ] - - location: 19 (remaining gas: 1039991.510 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ (Pair {} (Some 7)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out index b86d5364e8404ddafbd40d319e6efbf63c7c133d..9c5f42cc4a0b7450c1dabedef699c057a8108581 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left -9)-(Some 8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.640 units remaining) + - location: 10 (remaining gas: 1039991.570 units remaining) [ (Pair (Left -9) None) ] - - location: 10 (remaining gas: 1039991.630 units remaining) + - location: 10 (remaining gas: 1039991.560 units remaining) [ (Left -9) ] - - location: 11 (remaining gas: 1039991.620 units remaining) + - location: 11 (remaining gas: 1039991.550 units remaining) [ -9 ] - - location: 13 (remaining gas: 1039991.570 units remaining) + - location: 13 (remaining gas: 1039991.500 units remaining) [ 8 ] - - location: 11 (remaining gas: 1039991.555 units remaining) + - location: 11 (remaining gas: 1039991.485 units remaining) [ 8 ] - - location: 16 (remaining gas: 1039991.540 units remaining) + - location: 16 (remaining gas: 1039991.470 units remaining) [ (Some 8) ] - - location: 17 (remaining gas: 1039991.525 units remaining) + - location: 17 (remaining gas: 1039991.455 units remaining) [ {} (Some 8) ] - - location: 19 (remaining gas: 1039991.510 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ (Pair {} (Some 8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out index 335c27f4e031df0add42d3356641f95867bc7256..9501c3a50e13ca322e474d5f5555aa15e858baec 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 0)-(Some -1)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.640 units remaining) + - location: 10 (remaining gas: 1039991.570 units remaining) [ (Pair (Left 0) None) ] - - location: 10 (remaining gas: 1039991.630 units remaining) + - location: 10 (remaining gas: 1039991.560 units remaining) [ (Left 0) ] - - location: 11 (remaining gas: 1039991.620 units remaining) + - location: 11 (remaining gas: 1039991.550 units remaining) [ 0 ] - - location: 13 (remaining gas: 1039991.570 units remaining) + - location: 13 (remaining gas: 1039991.500 units remaining) [ -1 ] - - location: 11 (remaining gas: 1039991.555 units remaining) + - location: 11 (remaining gas: 1039991.485 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039991.540 units remaining) + - location: 16 (remaining gas: 1039991.470 units remaining) [ (Some -1) ] - - location: 17 (remaining gas: 1039991.525 units remaining) + - location: 17 (remaining gas: 1039991.455 units remaining) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039991.510 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ (Pair {} (Some -1)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out index f6450b7e67975d6ae7634ae550111aa282d8fbe0..1aa86fadeb189d46f9a9c19ccab11763256de8ea 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 7)-(Some -8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.640 units remaining) + - location: 10 (remaining gas: 1039991.570 units remaining) [ (Pair (Left 7) None) ] - - location: 10 (remaining gas: 1039991.630 units remaining) + - location: 10 (remaining gas: 1039991.560 units remaining) [ (Left 7) ] - - location: 11 (remaining gas: 1039991.620 units remaining) + - location: 11 (remaining gas: 1039991.550 units remaining) [ 7 ] - - location: 13 (remaining gas: 1039991.570 units remaining) + - location: 13 (remaining gas: 1039991.500 units remaining) [ -8 ] - - location: 11 (remaining gas: 1039991.555 units remaining) + - location: 11 (remaining gas: 1039991.485 units remaining) [ -8 ] - - location: 16 (remaining gas: 1039991.540 units remaining) + - location: 16 (remaining gas: 1039991.470 units remaining) [ (Some -8) ] - - location: 17 (remaining gas: 1039991.525 units remaining) + - location: 17 (remaining gas: 1039991.455 units remaining) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039991.510 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ (Pair {} (Some -8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out index e9f9849226aef91dd2089f26df40417985d8f677..93812c591c77d91af1f56359d1ff4e31b2a59a49 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Left 8)-(Some -9)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.640 units remaining) + - location: 10 (remaining gas: 1039991.570 units remaining) [ (Pair (Left 8) None) ] - - location: 10 (remaining gas: 1039991.630 units remaining) + - location: 10 (remaining gas: 1039991.560 units remaining) [ (Left 8) ] - - location: 11 (remaining gas: 1039991.620 units remaining) + - location: 11 (remaining gas: 1039991.550 units remaining) [ 8 ] - - location: 13 (remaining gas: 1039991.570 units remaining) + - location: 13 (remaining gas: 1039991.500 units remaining) [ -9 ] - - location: 11 (remaining gas: 1039991.555 units remaining) + - location: 11 (remaining gas: 1039991.485 units remaining) [ -9 ] - - location: 16 (remaining gas: 1039991.540 units remaining) + - location: 16 (remaining gas: 1039991.470 units remaining) [ (Some -9) ] - - location: 17 (remaining gas: 1039991.525 units remaining) + - location: 17 (remaining gas: 1039991.455 units remaining) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039991.510 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ (Pair {} (Some -9)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out index cc26e4c6929ef10bdd541ac25ae880decbc0760c..b16b9af7f1accb556890de9c58b0a9318ed156c0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 0)-(Some -1)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.640 units remaining) + - location: 10 (remaining gas: 1039991.570 units remaining) [ (Pair (Right 0) None) ] - - location: 10 (remaining gas: 1039991.630 units remaining) + - location: 10 (remaining gas: 1039991.560 units remaining) [ (Right 0) ] - - location: 11 (remaining gas: 1039991.620 units remaining) + - location: 11 (remaining gas: 1039991.550 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039991.570 units remaining) + - location: 15 (remaining gas: 1039991.500 units remaining) [ -1 ] - - location: 11 (remaining gas: 1039991.555 units remaining) + - location: 11 (remaining gas: 1039991.485 units remaining) [ -1 ] - - location: 16 (remaining gas: 1039991.540 units remaining) + - location: 16 (remaining gas: 1039991.470 units remaining) [ (Some -1) ] - - location: 17 (remaining gas: 1039991.525 units remaining) + - location: 17 (remaining gas: 1039991.455 units remaining) [ {} (Some -1) ] - - location: 19 (remaining gas: 1039991.510 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ (Pair {} (Some -1)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out index 0f59b809125db63d074eb7fdfbc03516b607ab2d..246e8e4c05d806b0045f6c1751de8f8fe8963603 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 7)-(Some -8)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.640 units remaining) + - location: 10 (remaining gas: 1039991.570 units remaining) [ (Pair (Right 7) None) ] - - location: 10 (remaining gas: 1039991.630 units remaining) + - location: 10 (remaining gas: 1039991.560 units remaining) [ (Right 7) ] - - location: 11 (remaining gas: 1039991.620 units remaining) + - location: 11 (remaining gas: 1039991.550 units remaining) [ 7 ] - - location: 15 (remaining gas: 1039991.570 units remaining) + - location: 15 (remaining gas: 1039991.500 units remaining) [ -8 ] - - location: 11 (remaining gas: 1039991.555 units remaining) + - location: 11 (remaining gas: 1039991.485 units remaining) [ -8 ] - - location: 16 (remaining gas: 1039991.540 units remaining) + - location: 16 (remaining gas: 1039991.470 units remaining) [ (Some -8) ] - - location: 17 (remaining gas: 1039991.525 units remaining) + - location: 17 (remaining gas: 1039991.455 units remaining) [ {} (Some -8) ] - - location: 19 (remaining gas: 1039991.510 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ (Pair {} (Some -8)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out index 91239643b8c39fd9821807814a34b15b701af81e..0f6f27c70f9eaff361ae952c4f2072eb4c0ab17c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[not_binary.tz-None-(Right 8)-(Some -9)].out @@ -7,21 +7,21 @@ emitted operations big_map diff trace - - location: 10 (remaining gas: 1039991.640 units remaining) + - location: 10 (remaining gas: 1039991.570 units remaining) [ (Pair (Right 8) None) ] - - location: 10 (remaining gas: 1039991.630 units remaining) + - location: 10 (remaining gas: 1039991.560 units remaining) [ (Right 8) ] - - location: 11 (remaining gas: 1039991.620 units remaining) + - location: 11 (remaining gas: 1039991.550 units remaining) [ 8 ] - - location: 15 (remaining gas: 1039991.570 units remaining) + - location: 15 (remaining gas: 1039991.500 units remaining) [ -9 ] - - location: 11 (remaining gas: 1039991.555 units remaining) + - location: 11 (remaining gas: 1039991.485 units remaining) [ -9 ] - - location: 16 (remaining gas: 1039991.540 units remaining) + - location: 16 (remaining gas: 1039991.470 units remaining) [ (Some -9) ] - - location: 17 (remaining gas: 1039991.525 units remaining) + - location: 17 (remaining gas: 1039991.455 units remaining) [ {} (Some -9) ] - - location: 19 (remaining gas: 1039991.510 units remaining) + - location: 19 (remaining gas: 1039991.440 units remaining) [ (Pair {} (Some -9)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out index fb138d3ee36983a8e79772b3cfe1dc00bf22f966..4c01c8b1ebde29d6567bffd0b30fdd7b8149a885 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_default_entrypoint.tz-Unit-Unit-Unit].out @@ -7,41 +7,41 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039983.500 units remaining) + - location: 13 (remaining gas: 1039982.520 units remaining) [ (Pair (Right (Left Unit)) Unit) ] - - location: 13 (remaining gas: 1039983.490 units remaining) + - location: 13 (remaining gas: 1039982.510 units remaining) [ ] - - location: 14 (remaining gas: 1039983.475 units remaining) + - location: 14 (remaining gas: 1039982.495 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 15 (remaining gas: 1039983.465 units remaining) + - location: 15 (remaining gas: 1039982.485 units remaining) [ ] - - location: 16 (remaining gas: 1039983.450 units remaining) + - location: 16 (remaining gas: 1039982.470 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 17 (remaining gas: 1039983.440 units remaining) + - location: 17 (remaining gas: 1039982.460 units remaining) [ ] - - location: 18 (remaining gas: 1039983.425 units remaining) + - location: 18 (remaining gas: 1039982.445 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 19 (remaining gas: 1039972.472 units remaining) + - location: 19 (remaining gas: 1039971.492 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 20 (remaining gas: 1039972.457 units remaining) + - location: 20 (remaining gas: 1039971.477 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 21 (remaining gas: 1039961.504 units remaining) + - location: 21 (remaining gas: 1039960.524 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039961.469 units remaining) + - location: 24 (remaining gas: 1039960.489 units remaining) [ 0 ] - - location: 25 (remaining gas: 1039961.454 units remaining) + - location: 25 (remaining gas: 1039960.474 units remaining) [ True ] - - location: 26 (remaining gas: 1039961.444 units remaining) + - location: 26 (remaining gas: 1039960.464 units remaining) [ ] - - location: 26 (remaining gas: 1039961.429 units remaining) + - location: 26 (remaining gas: 1039960.449 units remaining) [ ] - - location: 32 (remaining gas: 1039961.419 units remaining) + - location: 32 (remaining gas: 1039960.439 units remaining) [ Unit ] - - location: 33 (remaining gas: 1039961.404 units remaining) + - location: 33 (remaining gas: 1039960.424 units remaining) [ {} Unit ] - - location: 35 (remaining gas: 1039961.389 units remaining) + - location: 35 (remaining gas: 1039960.409 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out index 75ac09514eecab6e51ffc0eba2245f0e98d41dc9..cf07bfd6c6bd24b5ef4a0ad1e8d8aab1c461c02c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[self_with_entrypoint.tz-Unit-Left (Left 0)-Unit].out @@ -7,87 +7,87 @@ emitted operations big_map diff trace - - location: 13 (remaining gas: 1039954.631 units remaining) + - location: 13 (remaining gas: 1039952.881 units remaining) [ (Pair (Left (Left 0)) Unit) ] - - location: 13 (remaining gas: 1039954.621 units remaining) + - location: 13 (remaining gas: 1039952.871 units remaining) [ ] - - location: 14 (remaining gas: 1039954.606 units remaining) + - location: 14 (remaining gas: 1039952.856 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 15 (remaining gas: 1039943.620 units remaining) + - location: 15 (remaining gas: 1039941.870 units remaining) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 16 (remaining gas: 1039943.605 units remaining) + - location: 16 (remaining gas: 1039941.855 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 17 (remaining gas: 1039932.652 units remaining) + - location: 17 (remaining gas: 1039930.902 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 18 (remaining gas: 1039932.642 units remaining) + - location: 18 (remaining gas: 1039930.892 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 19 (remaining gas: 1039932.627 units remaining) + - location: 19 (remaining gas: 1039930.877 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 ] - - location: 21 (remaining gas: 1039932.617 units remaining) + - location: 21 (remaining gas: 1039930.867 units remaining) [ 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 19 (remaining gas: 1039932.587 units remaining) + - location: 19 (remaining gas: 1039930.837 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000017011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe60041 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 24 (remaining gas: 1039932.552 units remaining) + - location: 24 (remaining gas: 1039930.802 units remaining) [ -1 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 25 (remaining gas: 1039932.537 units remaining) + - location: 25 (remaining gas: 1039930.787 units remaining) [ True 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039932.527 units remaining) + - location: 26 (remaining gas: 1039930.777 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 26 (remaining gas: 1039932.512 units remaining) + - location: 26 (remaining gas: 1039930.762 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 32 (remaining gas: 1039932.497 units remaining) + - location: 32 (remaining gas: 1039930.747 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 33 (remaining gas: 1039921.544 units remaining) + - location: 33 (remaining gas: 1039919.794 units remaining) [ 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 0x050a00000016011d23c1d3d2f8a4ea5e8784b8f7ecf2ad304c0fe600 ] - - location: 36 (remaining gas: 1039921.509 units remaining) + - location: 36 (remaining gas: 1039919.759 units remaining) [ 0 ] - - location: 37 (remaining gas: 1039921.494 units remaining) + - location: 37 (remaining gas: 1039919.744 units remaining) [ True ] - - location: 38 (remaining gas: 1039921.484 units remaining) + - location: 38 (remaining gas: 1039919.734 units remaining) [ ] - - location: 38 (remaining gas: 1039921.469 units remaining) + - location: 38 (remaining gas: 1039919.719 units remaining) [ ] - - location: 44 (remaining gas: 1039921.454 units remaining) + - location: 44 (remaining gas: 1039919.704 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%A" ] - - location: 48 (remaining gas: 1039921.444 units remaining) + - location: 48 (remaining gas: 1039919.694 units remaining) [ ] - - location: 49 (remaining gas: 1039921.429 units remaining) + - location: 49 (remaining gas: 1039919.679 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%B" ] - - location: 53 (remaining gas: 1039921.419 units remaining) + - location: 53 (remaining gas: 1039919.669 units remaining) [ ] - - location: 54 (remaining gas: 1039921.404 units remaining) + - location: 54 (remaining gas: 1039919.654 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%maybe_C" ] - - location: 60 (remaining gas: 1039921.394 units remaining) + - location: 60 (remaining gas: 1039919.644 units remaining) [ ] - - location: 61 (remaining gas: 1039921.379 units remaining) + - location: 61 (remaining gas: 1039919.629 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi%Z" ] - - location: 65 (remaining gas: 1039921.369 units remaining) + - location: 65 (remaining gas: 1039919.619 units remaining) [ ] - - location: 66 (remaining gas: 1039921.354 units remaining) + - location: 66 (remaining gas: 1039919.604 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 76 (remaining gas: 1039921.344 units remaining) + - location: 76 (remaining gas: 1039919.594 units remaining) [ ] - - location: 77 (remaining gas: 1039921.329 units remaining) + - location: 77 (remaining gas: 1039919.579 units remaining) [ "KT1BEqzn5Wx8uJrZNvuS9DVHmLvG9td3fDLi" ] - - location: 87 (remaining gas: 1039921.319 units remaining) + - location: 87 (remaining gas: 1039919.569 units remaining) [ ] - - location: 88 (remaining gas: 1039921.309 units remaining) + - location: 88 (remaining gas: 1039919.559 units remaining) [ Unit ] - - location: 89 (remaining gas: 1039921.294 units remaining) + - location: 89 (remaining gas: 1039919.544 units remaining) [ {} Unit ] - - location: 91 (remaining gas: 1039921.279 units remaining) + - location: 91 (remaining gas: 1039919.529 units remaining) [ (Pair {} Unit) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out index 0a3d8d08292b952ba65461cc00233acd426e18a0..346287d1cb2fbce3be7adb7a3687e368335950cd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 0))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Left (Pair 0 0)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Left (Pair 0 0)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 0 0) ] - - location: 17 (remaining gas: 1039989.674 units remaining) + - location: 17 (remaining gas: 1039989.604 units remaining) [ 0 0 ] - - location: 18 (remaining gas: 1039989.674 units remaining) + - location: 18 (remaining gas: 1039989.604 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out index 58b068a2ce1df9223e5d3fd1de7469abf4eb6338..70fcfadef4164b03e38fd4a134734466efbac0c7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 0 1))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Left (Pair 0 1)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Left (Pair 0 1)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 0 1) ] - - location: 17 (remaining gas: 1039989.674 units remaining) + - location: 17 (remaining gas: 1039989.604 units remaining) [ 0 1 ] - - location: 18 (remaining gas: 1039989.674 units remaining) + - location: 18 (remaining gas: 1039989.604 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out index cb41dd04d3f43d2d4193370ae73431504ca36103..27e590726daa75f5351dbcba7d07d9d2a299cf13 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 1 2))-(Some 4)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Left (Pair 1 2)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Left (Pair 1 2)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 1 2) ] - - location: 17 (remaining gas: 1039989.674 units remaining) + - location: 17 (remaining gas: 1039989.604 units remaining) [ 1 2 ] - - location: 18 (remaining gas: 1039989.674 units remaining) + - location: 18 (remaining gas: 1039989.604 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 4 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 4) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 4)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out index 8ea431ec0fd3d7e39c24503bc8a8ab88c195394e..d01afd55fe1efc66031b5b7533e530041711f09e 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 15 2))-(Some 60)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Left (Pair 15 2)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Left (Pair 15 2)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 15 2) ] - - location: 17 (remaining gas: 1039989.674 units remaining) + - location: 17 (remaining gas: 1039989.604 units remaining) [ 15 2 ] - - location: 18 (remaining gas: 1039989.674 units remaining) + - location: 18 (remaining gas: 1039989.604 units remaining) [ 60 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 60 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 60) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 60) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 60)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out index 0edde0de1638be98681c96898d8de109c636fe30..5403c2ae5f7a170eb21277d3bb7571e37e9f2201 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Left (Pair 8 1))-(Some 16)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Left (Pair 8 1)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Left (Pair 8 1)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 8 1) ] - - location: 17 (remaining gas: 1039989.674 units remaining) + - location: 17 (remaining gas: 1039989.604 units remaining) [ 8 1 ] - - location: 18 (remaining gas: 1039989.674 units remaining) + - location: 18 (remaining gas: 1039989.604 units remaining) [ 16 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 16 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 16) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 16) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 16)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out index 1e5aabfa953d89e5831dc3abf8efa379e564cd49..0d0f3ce5ee4aefa8d218aa4faf566ce666c71ab9 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 0))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Right (Pair 0 0)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Right (Pair 0 0)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 0 0) ] - - location: 20 (remaining gas: 1039989.674 units remaining) + - location: 20 (remaining gas: 1039989.604 units remaining) [ 0 0 ] - - location: 21 (remaining gas: 1039989.674 units remaining) + - location: 21 (remaining gas: 1039989.604 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out index 2e48a6c8ed8be7ea8ac7b0bb4de5914c3e9b2e3a..986561eb8b8eb4b1f8c2f7919d0084113ae3ac76 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 0 1))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Right (Pair 0 1)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Right (Pair 0 1)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 0 1) ] - - location: 20 (remaining gas: 1039989.674 units remaining) + - location: 20 (remaining gas: 1039989.604 units remaining) [ 0 1 ] - - location: 21 (remaining gas: 1039989.674 units remaining) + - location: 21 (remaining gas: 1039989.604 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out index f6e4a4cdaf2a0cf86cebdbea2a1d2181f5f4c405..a0e686b1f33742fdb6522614d7fa20972cc92447 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 1 2))-(Some 0)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Right (Pair 1 2)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Right (Pair 1 2)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 1 2) ] - - location: 20 (remaining gas: 1039989.674 units remaining) + - location: 20 (remaining gas: 1039989.604 units remaining) [ 1 2 ] - - location: 21 (remaining gas: 1039989.674 units remaining) + - location: 21 (remaining gas: 1039989.604 units remaining) [ 0 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 0 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 0) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 0) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 0)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out index 88118280c7c42ab9f53891b0b851497c004ac9a4..d7eda8b0632eba064599add151ddb8bfdc230e85 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 15 2))-(Some 3)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Right (Pair 15 2)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Right (Pair 15 2)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 15 2) ] - - location: 20 (remaining gas: 1039989.674 units remaining) + - location: 20 (remaining gas: 1039989.604 units remaining) [ 15 2 ] - - location: 21 (remaining gas: 1039989.674 units remaining) + - location: 21 (remaining gas: 1039989.604 units remaining) [ 3 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 3 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 3) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 3) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 3)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out index e6485727f569500aefe3dc078700d25dfd73c769..1b3a0c74097800e4287b8bb9079f79792075a6e4 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[shifts.tz-None-(Right (Pair 8 1))-(Some 4)].out @@ -7,24 +7,24 @@ emitted operations big_map diff trace - - location: 14 (remaining gas: 1039989.704 units remaining) + - location: 14 (remaining gas: 1039989.634 units remaining) [ (Pair (Right (Pair 8 1)) None) ] - - location: 14 (remaining gas: 1039989.694 units remaining) + - location: 14 (remaining gas: 1039989.624 units remaining) [ (Right (Pair 8 1)) ] - - location: 15 (remaining gas: 1039989.684 units remaining) + - location: 15 (remaining gas: 1039989.614 units remaining) [ (Pair 8 1) ] - - location: 20 (remaining gas: 1039989.674 units remaining) + - location: 20 (remaining gas: 1039989.604 units remaining) [ 8 1 ] - - location: 21 (remaining gas: 1039989.674 units remaining) + - location: 21 (remaining gas: 1039989.604 units remaining) [ 4 ] - - location: 15 (remaining gas: 1039989.659 units remaining) + - location: 15 (remaining gas: 1039989.589 units remaining) [ 4 ] - - location: 22 (remaining gas: 1039989.644 units remaining) + - location: 22 (remaining gas: 1039989.574 units remaining) [ (Some 4) ] - - location: 23 (remaining gas: 1039989.629 units remaining) + - location: 23 (remaining gas: 1039989.559 units remaining) [ {} (Some 4) ] - - location: 25 (remaining gas: 1039989.614 units remaining) + - location: 25 (remaining gas: 1039989.544 units remaining) [ (Pair {} (Some 4)) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out index d3e24ab55358b5ad544c4eeb2b73413500910d86..abafaa0294662636211a9783629d9babd3ac5fc0 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False False)-(Some (Left False))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Left (Pair False False)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Left (Pair False False)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair False False) ] - - location: 19 (remaining gas: 1039986.729 units remaining) + - location: 19 (remaining gas: 1039986.659 units remaining) [ False False ] - - location: 20 (remaining gas: 1039986.709 units remaining) + - location: 20 (remaining gas: 1039986.639 units remaining) [ False ] - - location: 21 (remaining gas: 1039986.694 units remaining) + - location: 21 (remaining gas: 1039986.624 units remaining) [ (Left False) ] - - location: 17 (remaining gas: 1039986.679 units remaining) + - location: 17 (remaining gas: 1039986.609 units remaining) [ (Left False) ] - - location: 28 (remaining gas: 1039986.664 units remaining) + - location: 28 (remaining gas: 1039986.594 units remaining) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039986.649 units remaining) + - location: 29 (remaining gas: 1039986.579 units remaining) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039986.634 units remaining) + - location: 31 (remaining gas: 1039986.564 units remaining) [ (Pair {} (Some (Left False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out index 0802e45cfc60fc7b13546f8f389c12cea6edda36..a02a72773a685202615bdf563816bf1bca2f27fd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair False True)-(Some (Left True))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Left (Pair False True)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Left (Pair False True)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair False True) ] - - location: 19 (remaining gas: 1039986.729 units remaining) + - location: 19 (remaining gas: 1039986.659 units remaining) [ False True ] - - location: 20 (remaining gas: 1039986.709 units remaining) + - location: 20 (remaining gas: 1039986.639 units remaining) [ True ] - - location: 21 (remaining gas: 1039986.694 units remaining) + - location: 21 (remaining gas: 1039986.624 units remaining) [ (Left True) ] - - location: 17 (remaining gas: 1039986.679 units remaining) + - location: 17 (remaining gas: 1039986.609 units remaining) [ (Left True) ] - - location: 28 (remaining gas: 1039986.664 units remaining) + - location: 28 (remaining gas: 1039986.594 units remaining) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039986.649 units remaining) + - location: 29 (remaining gas: 1039986.579 units remaining) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039986.634 units remaining) + - location: 31 (remaining gas: 1039986.564 units remaining) [ (Pair {} (Some (Left True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out index 7c48164a1f51c1b38424836603d6ee766857250b..e878bd774190ec5cf7670ae1b75b8b9d248cc2af 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True False)-(Some (Left True))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Left (Pair True False)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Left (Pair True False)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair True False) ] - - location: 19 (remaining gas: 1039986.729 units remaining) + - location: 19 (remaining gas: 1039986.659 units remaining) [ True False ] - - location: 20 (remaining gas: 1039986.709 units remaining) + - location: 20 (remaining gas: 1039986.639 units remaining) [ True ] - - location: 21 (remaining gas: 1039986.694 units remaining) + - location: 21 (remaining gas: 1039986.624 units remaining) [ (Left True) ] - - location: 17 (remaining gas: 1039986.679 units remaining) + - location: 17 (remaining gas: 1039986.609 units remaining) [ (Left True) ] - - location: 28 (remaining gas: 1039986.664 units remaining) + - location: 28 (remaining gas: 1039986.594 units remaining) [ (Some (Left True)) ] - - location: 29 (remaining gas: 1039986.649 units remaining) + - location: 29 (remaining gas: 1039986.579 units remaining) [ {} (Some (Left True)) ] - - location: 31 (remaining gas: 1039986.634 units remaining) + - location: 31 (remaining gas: 1039986.564 units remaining) [ (Pair {} (Some (Left True))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out index 546b89b49d4928068ec64394a1de32ea26212182..948a669aff12667506846c90915659efd3af2ea7 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Left (Pair True True)-(Some (Left False))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Left (Pair True True)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Left (Pair True True)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair True True) ] - - location: 19 (remaining gas: 1039986.729 units remaining) + - location: 19 (remaining gas: 1039986.659 units remaining) [ True True ] - - location: 20 (remaining gas: 1039986.709 units remaining) + - location: 20 (remaining gas: 1039986.639 units remaining) [ False ] - - location: 21 (remaining gas: 1039986.694 units remaining) + - location: 21 (remaining gas: 1039986.624 units remaining) [ (Left False) ] - - location: 17 (remaining gas: 1039986.679 units remaining) + - location: 17 (remaining gas: 1039986.609 units remaining) [ (Left False) ] - - location: 28 (remaining gas: 1039986.664 units remaining) + - location: 28 (remaining gas: 1039986.594 units remaining) [ (Some (Left False)) ] - - location: 29 (remaining gas: 1039986.649 units remaining) + - location: 29 (remaining gas: 1039986.579 units remaining) [ {} (Some (Left False)) ] - - location: 31 (remaining gas: 1039986.634 units remaining) + - location: 31 (remaining gas: 1039986.564 units remaining) [ (Pair {} (Some (Left False))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out index 16cc94e4f4849320d21122ddaa31d80ff8a32518..e6dccefbc5b2dd91153cacc8ab0eede1916383b1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 0)-(Some (Right 0))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Right (Pair 0 0)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Right (Pair 0 0)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair 0 0) ] - - location: 24 (remaining gas: 1039986.729 units remaining) + - location: 24 (remaining gas: 1039986.659 units remaining) [ 0 0 ] - - location: 25 (remaining gas: 1039986.674 units remaining) + - location: 25 (remaining gas: 1039986.604 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039986.659 units remaining) + - location: 26 (remaining gas: 1039986.589 units remaining) [ (Right 0) ] - - location: 17 (remaining gas: 1039986.644 units remaining) + - location: 17 (remaining gas: 1039986.574 units remaining) [ (Right 0) ] - - location: 28 (remaining gas: 1039986.629 units remaining) + - location: 28 (remaining gas: 1039986.559 units remaining) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039986.614 units remaining) + - location: 29 (remaining gas: 1039986.544 units remaining) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039986.599 units remaining) + - location: 31 (remaining gas: 1039986.529 units remaining) [ (Pair {} (Some (Right 0))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out index 10991242f41fdb18d128463ffced15794552b7b5..39d8ba3152a1be6ae2152eb24d40425efdc33c85 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 0 1)-(Some (Right 1))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Right (Pair 0 1)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Right (Pair 0 1)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair 0 1) ] - - location: 24 (remaining gas: 1039986.729 units remaining) + - location: 24 (remaining gas: 1039986.659 units remaining) [ 0 1 ] - - location: 25 (remaining gas: 1039986.674 units remaining) + - location: 25 (remaining gas: 1039986.604 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039986.659 units remaining) + - location: 26 (remaining gas: 1039986.589 units remaining) [ (Right 1) ] - - location: 17 (remaining gas: 1039986.644 units remaining) + - location: 17 (remaining gas: 1039986.574 units remaining) [ (Right 1) ] - - location: 28 (remaining gas: 1039986.629 units remaining) + - location: 28 (remaining gas: 1039986.559 units remaining) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039986.614 units remaining) + - location: 29 (remaining gas: 1039986.544 units remaining) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039986.599 units remaining) + - location: 31 (remaining gas: 1039986.529 units remaining) [ (Pair {} (Some (Right 1))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out index 6a631338ba704219150227ef9663994ba3ee3397..c6dcc478e5d79c800e99f802122156dce3398c14 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 0)-(Some (Right 1))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Right (Pair 1 0)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Right (Pair 1 0)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair 1 0) ] - - location: 24 (remaining gas: 1039986.729 units remaining) + - location: 24 (remaining gas: 1039986.659 units remaining) [ 1 0 ] - - location: 25 (remaining gas: 1039986.674 units remaining) + - location: 25 (remaining gas: 1039986.604 units remaining) [ 1 ] - - location: 26 (remaining gas: 1039986.659 units remaining) + - location: 26 (remaining gas: 1039986.589 units remaining) [ (Right 1) ] - - location: 17 (remaining gas: 1039986.644 units remaining) + - location: 17 (remaining gas: 1039986.574 units remaining) [ (Right 1) ] - - location: 28 (remaining gas: 1039986.629 units remaining) + - location: 28 (remaining gas: 1039986.559 units remaining) [ (Some (Right 1)) ] - - location: 29 (remaining gas: 1039986.614 units remaining) + - location: 29 (remaining gas: 1039986.544 units remaining) [ {} (Some (Right 1)) ] - - location: 31 (remaining gas: 1039986.599 units remaining) + - location: 31 (remaining gas: 1039986.529 units remaining) [ (Pair {} (Some (Right 1))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out index c9d444e45324b24df1952951d8d52d95fe580ffc..af35611b60632ff0135e9b700b0c280f49bbad29 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 1 1)-(Some (Right 0))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Right (Pair 1 1)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Right (Pair 1 1)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair 1 1) ] - - location: 24 (remaining gas: 1039986.729 units remaining) + - location: 24 (remaining gas: 1039986.659 units remaining) [ 1 1 ] - - location: 25 (remaining gas: 1039986.674 units remaining) + - location: 25 (remaining gas: 1039986.604 units remaining) [ 0 ] - - location: 26 (remaining gas: 1039986.659 units remaining) + - location: 26 (remaining gas: 1039986.589 units remaining) [ (Right 0) ] - - location: 17 (remaining gas: 1039986.644 units remaining) + - location: 17 (remaining gas: 1039986.574 units remaining) [ (Right 0) ] - - location: 28 (remaining gas: 1039986.629 units remaining) + - location: 28 (remaining gas: 1039986.559 units remaining) [ (Some (Right 0)) ] - - location: 29 (remaining gas: 1039986.614 units remaining) + - location: 29 (remaining gas: 1039986.544 units remaining) [ {} (Some (Right 0)) ] - - location: 31 (remaining gas: 1039986.599 units remaining) + - location: 31 (remaining gas: 1039986.529 units remaining) [ (Pair {} (Some (Right 0))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out index 19344b796a9ddd218fe756d4fc354aeffc4e79b5..02ae54ad53b01e6d004ee83e189ea4a8e7fe4e23 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 21)-(Some (Right 63))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Right (Pair 42 21)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Right (Pair 42 21)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair 42 21) ] - - location: 24 (remaining gas: 1039986.729 units remaining) + - location: 24 (remaining gas: 1039986.659 units remaining) [ 42 21 ] - - location: 25 (remaining gas: 1039986.674 units remaining) + - location: 25 (remaining gas: 1039986.604 units remaining) [ 63 ] - - location: 26 (remaining gas: 1039986.659 units remaining) + - location: 26 (remaining gas: 1039986.589 units remaining) [ (Right 63) ] - - location: 17 (remaining gas: 1039986.644 units remaining) + - location: 17 (remaining gas: 1039986.574 units remaining) [ (Right 63) ] - - location: 28 (remaining gas: 1039986.629 units remaining) + - location: 28 (remaining gas: 1039986.559 units remaining) [ (Some (Right 63)) ] - - location: 29 (remaining gas: 1039986.614 units remaining) + - location: 29 (remaining gas: 1039986.544 units remaining) [ {} (Some (Right 63)) ] - - location: 31 (remaining gas: 1039986.599 units remaining) + - location: 31 (remaining gas: 1039986.529 units remaining) [ (Pair {} (Some (Right 63))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out index 73b4934984953a3d1cdac1e04da3e5294961981e..76049d0cec9826d25bf338d0c43952f284f29f78 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out +++ b/tests_python/tests_alpha/_regtest_outputs/test_contract_opcodes.TestContractOpcodes::test_contract_input_output[xor.tz-None-Right (Pair 42 63)-(Some (Right 21))].out @@ -7,26 +7,26 @@ emitted operations big_map diff trace - - location: 16 (remaining gas: 1039986.759 units remaining) + - location: 16 (remaining gas: 1039986.689 units remaining) [ (Pair (Right (Pair 42 63)) None) ] - - location: 16 (remaining gas: 1039986.749 units remaining) + - location: 16 (remaining gas: 1039986.679 units remaining) [ (Right (Pair 42 63)) ] - - location: 17 (remaining gas: 1039986.739 units remaining) + - location: 17 (remaining gas: 1039986.669 units remaining) [ (Pair 42 63) ] - - location: 24 (remaining gas: 1039986.729 units remaining) + - location: 24 (remaining gas: 1039986.659 units remaining) [ 42 63 ] - - location: 25 (remaining gas: 1039986.674 units remaining) + - location: 25 (remaining gas: 1039986.604 units remaining) [ 21 ] - - location: 26 (remaining gas: 1039986.659 units remaining) + - location: 26 (remaining gas: 1039986.589 units remaining) [ (Right 21) ] - - location: 17 (remaining gas: 1039986.644 units remaining) + - location: 17 (remaining gas: 1039986.574 units remaining) [ (Right 21) ] - - location: 28 (remaining gas: 1039986.629 units remaining) + - location: 28 (remaining gas: 1039986.559 units remaining) [ (Some (Right 21)) ] - - location: 29 (remaining gas: 1039986.614 units remaining) + - location: 29 (remaining gas: 1039986.544 units remaining) [ {} (Some (Right 21)) ] - - location: 31 (remaining gas: 1039986.599 units remaining) + - location: 31 (remaining gas: 1039986.529 units remaining) [ (Pair {} (Some (Right 21))) ] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_add_liquidity.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_add_liquidity.out index f45ffa25aa92f2d92d792ba3a1bac4c831f21dfe..4c36966e17f8979f8d945f5cbbf65209e40de6f2 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_add_liquidity.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_add_liquidity.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_add_liquidity Node is bootstrapped. -Estimated gas: 11854.210 units (will add 100 for safety) +Estimated gas: 11855.820 units (will add 100 for safety) Estimated storage: 141 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.001551 Expected counter: [EXPECTED_COUNTER] - Gas limit: 11955 + Gas limit: 11956 Storage limit: 161 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.001551 @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4633 bytes Paid storage size diff: 3 bytes - Consumed gas: 2911.771 + Consumed gas: 2912.681 Balance updates: [CONTRACT_HASH] ... -ꜩ0.00075 storage fees ........................... +ꜩ0.00075 @@ -58,7 +58,7 @@ This sequence of operations was run: Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 721 Storage size: 2263 bytes Paid storage size diff: 68 bytes - Consumed gas: 4394.451 + Consumed gas: 4394.801 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 @@ -75,7 +75,7 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 72007 Storage size: 2048 bytes Paid storage size diff: 70 bytes - Consumed gas: 4547.988 + Consumed gas: 4548.338 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0175 storage fees ........................... +ꜩ0.0175 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approval.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approval.out index 4486efb58657c70e18269d07930a0abf6d33485a..5a06774b6fb53b72234358919472c491b40d9a51 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approval.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approval.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_approval Node is bootstrapped. -Estimated gas: 2375.388 units (will add 100 for safety) +Estimated gas: 2375.598 units (will add 100 for safety) Estimated storage: 68 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: 0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c)] to 1000 Storage size: 2116 bytes Paid storage size diff: 68 bytes - Consumed gas: 2375.388 + Consumed gas: 2375.598 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approved_transfer.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approved_transfer.out index 969860a7142aa9fd71b2c6a5f3045cb9de0a2d5b..3c3b1bc9f966636b32211135a7d36e4d162bbb31 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approved_transfer.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_approved_transfer.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_approved_transfer Node is bootstrapped. -Estimated gas: 4366.195 units (will add 100 for safety) +Estimated gas: 4366.545 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -36,6 +36,6 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 71007 Set map(2)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 1000 Storage size: 2116 bytes - Consumed gas: 4366.195 + Consumed gas: 4366.545 Injected block at minimal timestamp diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve1.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve1.out index 5f5aa3fef451aff4d98b67668b62d6ee3d2ed9d8..976901b030bb0cc3468e57ab0713c18e81659a4f 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve1.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve1.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_call_approve1 Node is bootstrapped. -Estimated gas: 2375.464 units (will add 100 for safety) +Estimated gas: 2375.674 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2053 bytes Paid storage size diff: 71 bytes - Consumed gas: 2375.464 + Consumed gas: 2375.674 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve2.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve2.out index c1ad2ecb66959989064ef7787955523cf8f65e3f..a61c409fffca061bb33f8e7b1a65e30d5567accd 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve2.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve2.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_call_approve2 Node is bootstrapped. -Estimated gas: 2375.464 units (will add 100 for safety) +Estimated gas: 2375.674 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2124 bytes Paid storage size diff: 71 bytes - Consumed gas: 2375.464 + Consumed gas: 2375.674 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve3.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve3.out index 0571b605ed5b2d1edb7bde5849a2e1ec6230bc22..2d7ad66b2f758be6cb1625a265ae825d2454561c 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_approve3.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_call_approve3 Node is bootstrapped. -Estimated gas: 2375.464 units (will add 100 for safety) +Estimated gas: 2375.674 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2195 bytes Paid storage size diff: 71 bytes - Consumed gas: 2375.464 + Consumed gas: 2375.674 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_mint_or_burn.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_mint_or_burn.out index f09e53f69f9c6249c4dfd346e1e6004349ac4f7e..9232405e83b0e9df477c8a63c2a0e3145f4549f6 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_mint_or_burn.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_call_mint_or_burn.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_call_mint_or_burn Node is bootstrapped. -Estimated gas: 4548.314 units (will add 100 for safety) +Estimated gas: 4548.664 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -32,7 +32,7 @@ This sequence of operations was run: Set map(0)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 100000000 Storage size: 1982 bytes Paid storage size diff: 71 bytes - Consumed gas: 4548.941 + Consumed gas: 4549.291 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_remove_liquidity.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_remove_liquidity.out index e71db7b21fa0baf4934594b6402f9e8a8b5df0bc..936b795b506528b6a816c5e2214b693b431db215 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_remove_liquidity.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestAddApproveTransferRemove::test_remove_liquidity.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestAddApproveTransferRemove::test_remove_liquidity Node is bootstrapped. -Estimated gas: 10533.836 units (will add 100 for safety) +Estimated gas: 10535.516 units (will add 100 for safety) Estimated storage: 67 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.001416 Expected counter: [EXPECTED_COUNTER] - Gas limit: 10634 + Gas limit: 10636 Storage limit: 87 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.001416 @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4633 bytes - Consumed gas: 2913.981 + Consumed gas: 2914.961 Internal operations: Transaction: Amount: ꜩ0 @@ -47,7 +47,7 @@ This sequence of operations was run: Updated big_maps: Unset map(2)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] Storage size: 2048 bytes - Consumed gas: 2522.649 + Consumed gas: 2522.999 Transaction: Amount: ꜩ0 From: [CONTRACT_HASH] @@ -63,7 +63,7 @@ This sequence of operations was run: Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 10 Storage size: 2330 bytes Paid storage size diff: 67 bytes - Consumed gas: 3677.206 + Consumed gas: 3677.556 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_add_liquidity.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_add_liquidity.out index 64c4d1f84baa90887c8ebe95359aa3ccb941a695..88b126d08f3b26ac71943b5de88adacc1d8f3935 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_add_liquidity.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_add_liquidity.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_add_liquidity Node is bootstrapped. -Estimated gas: 11854.210 units (will add 100 for safety) +Estimated gas: 11855.820 units (will add 100 for safety) Estimated storage: 141 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.001551 Expected counter: [EXPECTED_COUNTER] - Gas limit: 11955 + Gas limit: 11956 Storage limit: 161 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.001551 @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4633 bytes Paid storage size diff: 3 bytes - Consumed gas: 2911.771 + Consumed gas: 2912.681 Balance updates: [CONTRACT_HASH] ... -ꜩ0.00075 storage fees ........................... +ꜩ0.00075 @@ -58,7 +58,7 @@ This sequence of operations was run: Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 721 Storage size: 2263 bytes Paid storage size diff: 68 bytes - Consumed gas: 4394.451 + Consumed gas: 4394.801 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 @@ -75,7 +75,7 @@ This sequence of operations was run: Set map(2)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 72007 Storage size: 2048 bytes Paid storage size diff: 70 bytes - Consumed gas: 4547.988 + Consumed gas: 4548.338 Balance updates: [CONTRACT_HASH] ... -ꜩ0.0175 storage fees ........................... +ꜩ0.0175 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_buy_tok.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_buy_tok.out index fa6a819409c974b222a1c0584ea16f885afc9485..6fa19c7dcde8e04955b7ec13cb38bb7521f0fc94 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_buy_tok.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_buy_tok.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_buy_tok Node is bootstrapped. -Estimated gas: 7499.668 units (will add 100 for safety) +Estimated gas: 7500.718 units (will add 100 for safety) Estimated storage: 326 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -12,13 +12,13 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [CONTRACT_HASH] - Fee to the baker: ꜩ0.001107 + Fee to the baker: ꜩ0.001108 Expected counter: [EXPECTED_COUNTER] - Gas limit: 7600 + Gas limit: 7601 Storage limit: 346 bytes Balance updates: - [CONTRACT_HASH] ... -ꜩ0.001107 - payload fees(the block proposer) ....... +ꜩ0.001107 + [CONTRACT_HASH] ... -ꜩ0.001108 + payload fees(the block proposer) ....... +ꜩ0.001108 Transaction: Amount: ꜩ9001 From: [CONTRACT_HASH] @@ -34,7 +34,7 @@ This sequence of operations was run: 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4634 bytes Paid storage size diff: 1 bytes - Consumed gas: 2402.458 + Consumed gas: 2403.158 Balance updates: [CONTRACT_HASH] ... -ꜩ0.00025 storage fees ........................... +ꜩ0.00025 @@ -56,7 +56,7 @@ This sequence of operations was run: Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 360 Storage size: 2331 bytes Paid storage size diff: 68 bytes - Consumed gas: 3677.210 + Consumed gas: 3677.560 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve1.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve1.out index 1cc5ac24697d9134c981de2a66e9e2d07a349c12..44735c8293af037518da06de11d2bfb98e233852 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve1.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve1.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_call_approve1 Node is bootstrapped. -Estimated gas: 2375.464 units (will add 100 for safety) +Estimated gas: 2375.674 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2053 bytes Paid storage size diff: 71 bytes - Consumed gas: 2375.464 + Consumed gas: 2375.674 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve2.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve2.out index 16aa65ef54c854531f0687456f9f1e7124a3d05a..b5c58e8855cb39aa05a0024e72620363075fb624 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve2.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve2.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_call_approve2 Node is bootstrapped. -Estimated gas: 2375.464 units (will add 100 for safety) +Estimated gas: 2375.674 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2124 bytes Paid storage size diff: 71 bytes - Consumed gas: 2375.464 + Consumed gas: 2375.674 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve3.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve3.out index f6ca037eb3a2676dfec1b6360eba5ce8b9b2a70f..efaf4c64e9b42b86f3014f8bad669e640e78b044 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve3.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_approve3.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_call_approve3 Node is bootstrapped. -Estimated gas: 2375.464 units (will add 100 for safety) +Estimated gas: 2375.674 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600)] to 1000000000 Storage size: 2195 bytes Paid storage size diff: 71 bytes - Consumed gas: 2375.464 + Consumed gas: 2375.674 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_mint_or_burn.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_mint_or_burn.out index 1b1cfad1ecde469f5932f6ec3e7b7eb9608d1b9c..5fd38c8b82067d1474ff3be1450b5848933e5a0d 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_mint_or_burn.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_call_mint_or_burn.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_call_mint_or_burn Node is bootstrapped. -Estimated gas: 4548.314 units (will add 100 for safety) +Estimated gas: 4548.664 units (will add 100 for safety) Estimated storage: 71 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -32,7 +32,7 @@ This sequence of operations was run: Set map(0)[0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78] to 100000000 Storage size: 1982 bytes Paid storage size diff: 71 bytes - Consumed gas: 4548.941 + Consumed gas: 4549.291 Balance updates: [CONTRACT_HASH] ... -ꜩ0.01775 storage fees ........................... +ꜩ0.01775 diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_sell_tok.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_sell_tok.out index f1fdd0683e6aed556e804eeed9dd274b04595a63..b458e7b1171338b26cf4c6ea914978585dbc33d1 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_sell_tok.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_sell_tok.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_sell_tok Node is bootstrapped. -Estimated gas: 9818.099 units (will add 100 for safety) +Estimated gas: 9819.149 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [CONTRACT_HASH] Fee to the baker: ꜩ0.001337 Expected counter: [EXPECTED_COUNTER] - Gas limit: 9919 + Gas limit: 9920 Storage limit: 0 bytes Balance updates: [CONTRACT_HASH] ... -ꜩ0.001337 @@ -33,7 +33,7 @@ This sequence of operations was run: 0x01e927f00ef734dfc85919635e9afc9166c83ef9fc00 ; 0x0115eb0104481a6d7921160bc982c5e0a561cd8a3a00 } Storage size: 4633 bytes - Consumed gas: 2403.612 + Consumed gas: 2404.312 Internal operations: Transaction: Amount: ꜩ0 @@ -51,7 +51,7 @@ This sequence of operations was run: Unset map(0)[0x0000dac9f52543da1aed0bc1d6b46bf7c10db7014cd6] Set map(0)[0x01d496def47a3be89f5d54c6e6bb13cc6645d6e16600] to 461 Storage size: 2331 bytes - Consumed gas: 4574.487 + Consumed gas: 4574.837 Transaction: Amount: ꜩ3891.966034 From: [CONTRACT_HASH] diff --git a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_transfer.out b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_transfer.out index c03b62157efc9c49ea3cbd85f0ee8e62ad4d7d18..eb4057843f4e25401e4cfd0eaf82ac5ed47d3551 100644 --- a/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_transfer.out +++ b/tests_python/tests_alpha/_regtest_outputs/test_liquidity_baking.TestTrades::test_transfer.out @@ -1,7 +1,7 @@ tests_alpha/test_liquidity_baking.py::TestTrades::test_transfer Node is bootstrapped. -Estimated gas: 3679.110 units (will add 100 for safety) +Estimated gas: 3679.460 units (will add 100 for safety) Estimated storage: 68 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[BLOCK_HASH]' @@ -35,7 +35,7 @@ This sequence of operations was run: Set map(0)[0x0000e7670f32038107a59a2b9cfefae36ea21f5aa63c] to 260 Storage size: 2399 bytes Paid storage size diff: 68 bytes - Consumed gas: 3679.110 + Consumed gas: 3679.460 Balance updates: [CONTRACT_HASH] ... -ꜩ0.017 storage fees ........................... +ꜩ0.017