diff --git a/docs/protocols/alpha.rst b/docs/protocols/alpha.rst index 66401eb169ec53969e7feef133f1c4cbc3736854..83d6a92577775077cd462a901f1d57377025fc79 100644 --- a/docs/protocols/alpha.rst +++ b/docs/protocols/alpha.rst @@ -56,3 +56,5 @@ Internal - Remove the deprecated and unused ``tx_rollup_l2_address`` Michelson type. (MR :gl:`!8546`) + +- Add an internal represention case for the ``UNIT`` Michelson instruction. (MR :gl:`!8579`) diff --git a/src/proto_alpha/lib_benchmarks_proto/interpreter_benchmarks.ml b/src/proto_alpha/lib_benchmarks_proto/interpreter_benchmarks.ml index 48c7e81303c8e1ac83af3ef3baa14619d14c2d8f..25268a0bf556e61d8df8a862ce10dc0564d768ae 100644 --- a/src/proto_alpha/lib_benchmarks_proto/interpreter_benchmarks.ml +++ b/src/proto_alpha/lib_benchmarks_proto/interpreter_benchmarks.ml @@ -771,6 +771,14 @@ module Registration_section = struct ~kinstr:(IPush (dummy_loc, unit, (), halt)) () + let () = + simple_benchmark + ~amplification:100 + ~name:Interpreter_workload.N_IUnit + ~stack_type:(unit @$ unit @$ bot) + ~kinstr:(IUnit (dummy_loc, halt)) + () + (* deep stack manipulation *) (* Constructing these instructions is made especially painful by the diff --git a/src/proto_alpha/lib_benchmarks_proto/interpreter_model.ml b/src/proto_alpha/lib_benchmarks_proto/interpreter_model.ml index 9f9b4b5188a06d3ec547fbf7bdcfeab71a015312..76866083af3b034d32357d0f9a71ea81b36f0f72 100644 --- a/src/proto_alpha/lib_benchmarks_proto/interpreter_model.ml +++ b/src/proto_alpha/lib_benchmarks_proto/interpreter_model.ml @@ -404,8 +404,8 @@ let ir_model instr_or_cont = match instr_or_cont with | Instr_name instr -> ( match instr with - | N_IDrop | N_IDup | N_ISwap | N_IPush | N_ICons_pair | N_ICar | N_ICdr - | N_ICons_some | N_ICons_none | N_IIf_none | N_IOpt_map | N_ILeft + | N_IDrop | N_IDup | N_ISwap | N_IPush | N_IUnit | N_ICons_pair | N_ICar + | N_ICdr | N_ICons_some | N_ICons_none | N_IIf_none | N_IOpt_map | N_ILeft | N_IRight | N_IIf_left | N_ICons_list | N_INil | N_IIf_cons | N_IEmpty_set | N_IEmpty_map | N_IEmpty_big_map | N_IOr | N_IAnd | N_IXor | N_INot | N_IIf | N_ILoop | N_ILoop_left | N_IDip | N_IExec | N_IView diff --git a/src/proto_alpha/lib_benchmarks_proto/interpreter_workload.ml b/src/proto_alpha/lib_benchmarks_proto/interpreter_workload.ml index 76da169ca2eb294fb1e38a8655f04663f3265665..329440ed0b9d9591f6772c868a72b233ad957824 100644 --- a/src/proto_alpha/lib_benchmarks_proto/interpreter_workload.ml +++ b/src/proto_alpha/lib_benchmarks_proto/interpreter_workload.ml @@ -45,6 +45,7 @@ type instruction_name = | N_IDup | N_ISwap | N_IPush + | N_IUnit (* pairs *) | N_ICons_pair | N_ICar @@ -268,6 +269,7 @@ let string_of_instruction_name : instruction_name -> string = | N_IDup -> "N_IDup" | N_ISwap -> "N_ISwap" | N_IPush -> "N_IPush" + | N_IUnit -> "N_IUnit" | N_ICons_pair -> "N_ICons_pair" | N_ICar -> "N_ICar" | N_ICdr -> "N_ICdr" @@ -754,6 +756,8 @@ module Instructions = struct let push = ir_sized_step N_IPush nullary + let unit = ir_sized_step N_IUnit nullary + let cons_pair = ir_sized_step N_ICons_pair nullary let car = ir_sized_step N_ICar nullary @@ -1223,6 +1227,7 @@ let extract_ir_sized_step : | IDup (_, _), _ -> Instructions.dup | ISwap (_, _), _ -> Instructions.swap | IPush (_, _, _, _), _ -> Instructions.push + | IUnit (_, _), _ -> Instructions.unit | ICons_pair (_, _), _ -> Instructions.cons_pair | ICar (_, _), _ -> Instructions.car | ICdr (_, _), _ -> Instructions.cdr diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index afac7f99ca1b2afff77b58d4751d599eb34d4ace..f1e0049511e6b607fffc45ea6e502ab8f614f118 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -755,6 +755,7 @@ module Scripts = struct | IDup _ -> pp_print_string fmt "DUP" | ISwap _ -> pp_print_string fmt "SWAP" | IPush _ -> pp_print_string fmt "PUSH" + | IUnit _ -> pp_print_string fmt "UNIT" | ICons_pair _ -> pp_print_string fmt "PAIR" | ICar _ -> pp_print_string fmt "CAR" | ICdr _ -> pp_print_string fmt "CDR" diff --git a/src/proto_alpha/lib_plugin/script_interpreter_logging.ml b/src/proto_alpha/lib_plugin/script_interpreter_logging.ml index 297f153d731f4867127fee836af48ab0795e93a7..663283db73ec2f9a5727fd0431cd7df410f1a8a8 100644 --- a/src/proto_alpha/lib_plugin/script_interpreter_logging.ml +++ b/src/proto_alpha/lib_plugin/script_interpreter_logging.ml @@ -182,6 +182,15 @@ module Stack_utils = struct continuation = k; reconstruct = (fun k -> IPush (loc, a, x, k)); } + | IUnit (loc, k), s -> + let s = Item_t (unit_t, s) in + ok + @@ Ex_split_kinstr + { + cont_init_stack = s; + continuation = k; + reconstruct = (fun k -> IUnit (loc, k)); + } | ICons_pair (loc, k), Item_t (a, Item_t (b, s)) -> pair_t dummy a b >|? fun (Ty_ex_c c) -> let s = Item_t (c, s) in diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml index f53c4be85e3c72f41cf401583e45082cb59c8d8a..e548e6aceb8b3b0d0faa92349c073a170a065010 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.ml +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.ml @@ -396,6 +396,8 @@ module Cost_of = struct let push = atomic_step_cost cost_N_IPush + let unit = atomic_step_cost cost_N_IUnit + let empty_big_map = atomic_step_cost cost_N_IEmpty_big_map let lt = atomic_step_cost cost_N_ILt diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas.mli b/src/proto_alpha/lib_protocol/michelson_v1_gas.mli index bc804d926472de2f51088f513b6363c2a4f20024..012db06656f486550a0e027a378741ec1ae71893 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas.mli +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas.mli @@ -315,6 +315,8 @@ module Cost_of : sig val push : Gas.cost + val unit : Gas.cost + val empty_big_map : Gas.cost val lt : Gas.cost diff --git a/src/proto_alpha/lib_protocol/michelson_v1_gas_costs_generated.ml b/src/proto_alpha/lib_protocol/michelson_v1_gas_costs_generated.ml index 6d5c3af303e7596f1a0d97b171ce20b160da8873..15286d499890a2e0803ed2dfcac5fb61fa75374e 100644 --- a/src/proto_alpha/lib_protocol/michelson_v1_gas_costs_generated.ml +++ b/src/proto_alpha/lib_protocol/michelson_v1_gas_costs_generated.ml @@ -178,6 +178,9 @@ let cost_N_ICons_some = S.safe_int 10 (* model N_IPush *) let cost_N_IPush = S.safe_int 10 +(* model N_IUnit *) +let cost_N_IUnit = S.safe_int 10 + (* model N_IDig *) (* Approximating 6.750442 x term *) let cost_N_IDig size = diff --git a/src/proto_alpha/lib_protocol/script_interpreter.ml b/src/proto_alpha/lib_protocol/script_interpreter.ml index f6cf653a36587fae3b15805b6e66470d1ce08541..e90e9c291fb0689bab4037e0035dee90420be853 100644 --- a/src/proto_alpha/lib_protocol/script_interpreter.ml +++ b/src/proto_alpha/lib_protocol/script_interpreter.ml @@ -656,6 +656,7 @@ module Raw = struct (step [@ocaml.tailcall]) g gas k ks top (accu, stack) | IPush (_, _ty, v, k) -> (step [@ocaml.tailcall]) g gas k ks v (accu, stack) + | IUnit (_, k) -> (step [@ocaml.tailcall]) g gas k ks () (accu, stack) (* options *) | ICons_some (_, k) -> (step [@ocaml.tailcall]) g gas k ks (Some accu) stack diff --git a/src/proto_alpha/lib_protocol/script_interpreter_defs.ml b/src/proto_alpha/lib_protocol/script_interpreter_defs.ml index 0e92de38d5d22002cab8e65e813a7a812cae5e84..7b6265d4e76df2659dd12e14a5a5b104e05c2e9f 100644 --- a/src/proto_alpha/lib_protocol/script_interpreter_defs.ml +++ b/src/proto_alpha/lib_protocol/script_interpreter_defs.ml @@ -294,6 +294,7 @@ let cost_of_instr : type a s r f. (a, s, r, f) kinstr -> a -> s -> Gas.cost = | IDup _ -> Interp_costs.dup | ISwap _ -> Interp_costs.swap | IPush _ -> Interp_costs.push + | IUnit _ -> Interp_costs.unit | ICons_some _ -> Interp_costs.cons_some | ICons_none _ -> Interp_costs.cons_none | IIf_none _ -> Interp_costs.if_none diff --git a/src/proto_alpha/lib_protocol/script_ir_translator.ml b/src/proto_alpha/lib_protocol/script_ir_translator.ml index 674a376463ad4c9550c3e17feee533ac0ee21000..4093dccc15385cefc3e4498e63d35390abeca56d 100644 --- a/src/proto_alpha/lib_protocol/script_ir_translator.ml +++ b/src/proto_alpha/lib_protocol/script_ir_translator.ml @@ -2694,8 +2694,8 @@ and parse_instr : typed ctxt loc push (Item_t (t, stack)) | Prim (loc, I_UNIT, [], annot), stack -> check_var_type_annot loc annot >>?= fun () -> - let push = {apply = (fun k -> IPush (loc, unit_t, (), k))} in - typed ctxt loc push (Item_t (unit_t, stack)) + let unit = {apply = (fun k -> IUnit (loc, k))} in + typed ctxt loc unit (Item_t (unit_t, stack)) (* options *) | Prim (loc, I_SOME, [], annot), Item_t (t, rest) -> check_var_type_annot loc annot >>?= fun () -> diff --git a/src/proto_alpha/lib_protocol/script_typed_ir.ml b/src/proto_alpha/lib_protocol/script_typed_ir.ml index c7c6935b2274522dd2fa06872e63ce0f19d46d9c..2edc9f236e7d46ad11d4c5e9ad0a698c81365c65 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir.ml +++ b/src/proto_alpha/lib_protocol/script_typed_ir.ml @@ -454,6 +454,9 @@ and ('before_top, 'before, 'result_top, 'result) kinstr = | IPush : Script.location * ('ty, _) ty * 'ty * ('ty, 'a * 'S, 'r, 'F) kinstr -> ('a, 'S, 'r, 'F) kinstr + | IUnit : + Script.location * (unit, 'a * 'S, 'r, 'F) kinstr + -> ('a, 'S, 'r, 'F) kinstr (* Pairs ----- @@ -1539,6 +1542,7 @@ let kinstr_location : type a s b f. (a, s, b, f) kinstr -> Script.location = | IDup (loc, _) -> loc | ISwap (loc, _) -> loc | IPush (loc, _, _, _) -> loc + | IUnit (loc, _) -> loc | ICons_pair (loc, _) -> loc | ICar (loc, _) -> loc | ICdr (loc, _) -> loc @@ -2083,6 +2087,7 @@ let kinstr_traverse i init f = | IDup (_, k) -> (next [@ocaml.tailcall]) k | ISwap (_, k) -> (next [@ocaml.tailcall]) k | IPush (_, _, _, k) -> (next [@ocaml.tailcall]) k + | IUnit (_, k) -> (next [@ocaml.tailcall]) k | ICons_pair (_, k) -> (next [@ocaml.tailcall]) k | ICar (_, k) -> (next [@ocaml.tailcall]) k | ICdr (_, k) -> (next [@ocaml.tailcall]) k diff --git a/src/proto_alpha/lib_protocol/script_typed_ir.mli b/src/proto_alpha/lib_protocol/script_typed_ir.mli index 8c01f106563e7e119684fc605ea88a68740de081..ff246e041dce4b44787d94fa0bb87c769fd875b3 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir.mli +++ b/src/proto_alpha/lib_protocol/script_typed_ir.mli @@ -446,6 +446,9 @@ and ('before_top, 'before, 'result_top, 'result) kinstr = | IPush : Script.location * ('ty, _) ty * 'ty * ('ty, 'a * 'S, 'r, 'F) kinstr -> ('a, 'S, 'r, 'F) kinstr + | IUnit : + Script.location * (unit, 'a * 'S, 'r, 'F) kinstr + -> ('a, 'S, 'r, 'F) kinstr (* Pairs ----- diff --git a/src/proto_alpha/lib_protocol/script_typed_ir_size.ml b/src/proto_alpha/lib_protocol/script_typed_ir_size.ml index cd5b437ecd71d3062cb92b4a05f8d712ecb4e8dd..2bb0e205b60425c020c298df173bea7c8be4c80b 100644 --- a/src/proto_alpha/lib_protocol/script_typed_ir_size.ml +++ b/src/proto_alpha/lib_protocol/script_typed_ir_size.ml @@ -425,6 +425,7 @@ and kinstr_size : (accu ++ ty_size ty) ty x + | IUnit (loc, k) -> ret_succ_adding accu (base1 loc k) | ICons_pair (loc, k) -> ret_succ_adding accu (base1 loc k) | ICar (loc, k) -> ret_succ_adding accu (base1 loc k) | ICdr (loc, k) -> ret_succ_adding accu (base1 loc k) diff --git a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/auction.out b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/auction.out index 4b6dfefc1ebee51722f9ecb9118db1003a549981..ac865144621f3bd6467ef245b62e24885653ba31 100644 --- a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/auction.out +++ b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/auction.out @@ -356,11 +356,11 @@ trace (Pair "[TIMESTAMP]" 100000000 "[PUBLIC_KEY_HASH]") ] - control: KUndip - control: KCons - - log/PUSH (exit) @ location: 55 + - log/UNIT (exit) @ location: 55 [ 50000000 "[PUBLIC_KEY_HASH]" (Pair "[TIMESTAMP]" 100000000 "[PUBLIC_KEY_HASH]") ] - - PUSH (entry) @ location: 59 + - UNIT (entry) @ location: 59 [ 50000000 "[PUBLIC_KEY_HASH]" (Pair "[TIMESTAMP]" 100000000 "[PUBLIC_KEY_HASH]") ] diff --git a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out index 9bba705816e2af6f5d6b6c094e05d72e6c59bda4..f1ef1d79cf48bc091e2cdea40bfcd353ad4b667d 100644 --- a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out +++ b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/comb-get.out @@ -178,10 +178,10 @@ trace - GET (entry) @ location: 76 [ (Pair 1 4 2 Unit) (Pair 1 4 2 Unit) ] - - log/PUSH (exit) @ location: 76 + - log/UNIT (exit) @ location: 76 [ Unit (Pair 1 4 2 Unit) ] - - PUSH (entry) @ location: 78 + - UNIT (entry) @ location: 78 [ Unit (Pair 1 4 2 Unit) ] - log/COMPARE (exit) @ location: 78 @@ -213,9 +213,9 @@ trace [ (Pair 1 4 2 Unit) ] - DROP (entry) @ location: 89 [ (Pair 1 4 2 Unit) ] - - log/PUSH (exit) @ location: 89 + - log/UNIT (exit) @ location: 89 [ ] - - PUSH (entry) @ location: 90 + - UNIT (entry) @ location: 90 [ ] - log/NIL (exit) @ location: 90 [ Unit ] diff --git a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out index f9f1eab6ed02b654de14edbb75b2431a73b1b82a..87ead45da454d02b5f8f0b77cd5d55d8fe87cc61 100644 --- a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out +++ b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/comb-set.out @@ -34,9 +34,9 @@ trace - UPDATE (entry) @ location: 25 [ 8 (Pair 2 12 2 Unit) ] - - log/PUSH (exit) @ location: 25 + - log/UNIT (exit) @ location: 25 [ (Pair 2 12 8 Unit) ] - - PUSH (entry) @ location: 27 + - UNIT (entry) @ location: 27 [ (Pair 2 12 8 Unit) ] - log/UPDATE (exit) @ location: 27 [ Unit diff --git a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/faucet.out b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/faucet.out index 702128601876b1f05d88efd064424e2591df2835..6909d0ea978aaf325d06766a004eada28db85213 100644 --- a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/faucet.out +++ b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/faucet.out @@ -63,10 +63,10 @@ trace [ "[PUBLIC_KEY_HASH]" ] - PUSH (entry) @ location: 25 [ "[PUBLIC_KEY_HASH]" ] - - log/PUSH (exit) @ location: 25 + - log/UNIT (exit) @ location: 25 [ 1000000 "[PUBLIC_KEY_HASH]" ] - - PUSH (entry) @ location: 28 + - UNIT (entry) @ location: 28 [ 1000000 "[PUBLIC_KEY_HASH]" ] - log/TRANSFER_TOKENS (exit) @ location: 28 diff --git a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out index 0246417e2aa9b8731b475b406c01973841be3c06..847e8b481addf6588c019708cfa65207fb002505 100644 --- a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out +++ b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/packunpack.out @@ -82,9 +82,9 @@ trace [ (Pair (Pair "abc" { 1 ; 2 ; 3 }) { 4 ; 5 ; 6 }) ] - DROP (entry) @ location: 46 [ (Pair (Pair "abc" { 1 ; 2 ; 3 }) { 4 ; 5 ; 6 }) ] - - log/PUSH (exit) @ location: 46 + - log/UNIT (exit) @ location: 46 [ ] - - PUSH (entry) @ location: 47 + - UNIT (entry) @ location: 47 [ ] - log/NIL (exit) @ location: 47 [ Unit ] diff --git a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out index 52f6e5de51a3540f8dea27dc6807c4106b692c0f..ae449fe91b48e6372c56fc00fb9a6dd8fc25b1d5 100644 --- a/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out +++ b/src/proto_alpha/lib_protocol/test/regression/expected/test_logging.ml/ticket_split.out @@ -159,9 +159,9 @@ trace [ (Pair "[CONTRACT_HASH]" 17 2) ] - DROP (entry) @ location: 61 [ (Pair "[CONTRACT_HASH]" 17 2) ] - - log/PUSH (exit) @ location: 61 + - log/UNIT (exit) @ location: 61 [ ] - - PUSH (entry) @ location: 62 + - UNIT (entry) @ location: 62 [ ] - log/NIL (exit) @ location: 62 [ Unit ] diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_contract_fails.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_contract_fails.out index 52363e3275f2828b7c69773e6e100bbb0f099a08..222fc29cd9939bb3ad906516d0a49db030be71b7 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_contract_fails.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_contract_fails.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract contract transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/contract.tz --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 589.326 units (will add 100 for safety) +Estimated gas: 589.146 units (will add 100 for safety) Estimated storage: 329 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -33,7 +33,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 72 bytes Paid storage size diff: 72 bytes - Consumed gas: 589.292 + Consumed gas: 589.112 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.018 storage fees ........................... +ꜩ0.018 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_sender.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_sender.out index cbefc4d7f4353d8c6e3e3ddcdb33d87b6be2280c..73be7bfe57b5f7879bc31eda2987ff75701a4aca 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_sender.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_sender.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract proxy transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/proxy.tz --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 585.283 units (will add 100 for safety) +Estimated gas: 585.193 units (will add 100 for safety) Estimated storage: 312 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -39,7 +39,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 55 bytes Paid storage size diff: 55 bytes - Consumed gas: 585.250 + Consumed gas: 585.160 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01375 storage fees ........................... +ꜩ0.01375 @@ -128,7 +128,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from '[PUBLIC_KEY_HASH]' to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 2949.067 units (will add 100 for safety) +Estimated gas: 2948.977 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -141,7 +141,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000599 Expected counter: 2 - Gas limit: 3050 + Gas limit: 3049 Storage limit: 0 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000599 @@ -154,7 +154,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 55 bytes - Consumed gas: 1739.558 + Consumed gas: 1739.468 Internal operations: Internal Transaction: Amount: ꜩ0 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_slice.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_slice.out index 5b4b8f9047c035a01dfa2ee0b02e3b805103c331..b3b80e9e4d6aa04319154680ae6a16a35da9f745 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_slice.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_slice.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract slices transferring 1 from bootstrap1 running michelson_test_scripts/opcodes/slices.tz --init '"sppk7dBPqMPjDjXgKbb5f7V3PuKUrA4Zuwc3c3H7XqQerqPUWbK7Hna"' --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 1079.522 units (will add 100 for safety) +Estimated gas: 1078.622 units (will add 100 for safety) Estimated storage: 835 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000946 Expected counter: 1 - Gas limit: 1180 + Gas limit: 1179 Storage limit: 855 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000946 @@ -73,7 +73,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 578 bytes Paid storage size diff: 578 bytes - Consumed gas: 1079.489 + Consumed gas: 1078.589 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.1445 storage fees ........................... +ꜩ0.1445 @@ -417,7 +417,7 @@ Fatal error: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '(Pair 0xe009ab79e8b84ef0e55c43a9a857214d8761e67b75ba63500a5694fb2ffe174acc2de22d01ccb7259342437f05e1987949f0ad82e9f32e9a0b79cb252d7f7b8236ad728893f4e7150742eefdbeda254970f9fcd92c6228c178e1a923e5600758eb83f2a05edd0be7625657901f2ba81eaf145d003dbef78e33f43a32a3788bdf0501000000085341554349535345 "spsig1PPUFZucuAQybs5wsqsNQ68QNgFaBnVKMFaoZZfi1BtNnuCAWnmL9wVy5HfHkR6AeodjVGxpBVVSYcJKyMURn6K1yknYLm")' Node is bootstrapped. -Estimated gas: 1625.970 units (will add 100 for safety) +Estimated gas: 1625.070 units (will add 100 for safety) Estimated storage: 257 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -445,7 +445,7 @@ This sequence of operations was run: Updated storage: 0x0103fe5753baadb56a4836e34571ce4cbe82158ee40eba872b848f709699019725ba Storage size: 578 bytes - Consumed gas: 1526.495 + Consumed gas: 1525.595 Internal operations: Internal Transaction: Amount: ꜩ1 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_source.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_source.out index c0aca5beecd885125e0dc1aa2e6db176b03199a7..e9e097b02312c13d47d85c0165969fc2891ec094 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_source.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_source.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract proxy transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/proxy.tz --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 585.283 units (will add 100 for safety) +Estimated gas: 585.193 units (will add 100 for safety) Estimated storage: 312 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -39,7 +39,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 55 bytes Paid storage size diff: 55 bytes - Consumed gas: 585.250 + Consumed gas: 585.160 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01375 storage fees ........................... +ꜩ0.01375 @@ -128,7 +128,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from '[PUBLIC_KEY_HASH]' to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 2949.067 units (will add 100 for safety) +Estimated gas: 2948.977 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -141,7 +141,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000599 Expected counter: 2 - Gas limit: 3050 + Gas limit: 3049 Storage limit: 0 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000599 @@ -154,7 +154,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 55 bytes - Consumed gas: 1739.558 + Consumed gas: 1739.468 Internal operations: Internal Transaction: Amount: ꜩ0 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_split_bytes.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_split_bytes.out index 67ad38e33eb2d4908023719a23804d2725ad8833..30c9de1628967ec7081c431c44c50dd6465fc459 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_split_bytes.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_split_bytes.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract split_bytes transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/split_bytes.tz --init '{}' --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 650.005 units (will add 100 for safety) +Estimated gas: 649.915 units (will add 100 for safety) Estimated storage: 511 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_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: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000557 + Fee to the baker: ꜩ0.000556 Expected counter: 1 - Gas limit: 751 + Gas limit: 750 Storage limit: 531 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000557 - payload fees(the block proposer) ....... +ꜩ0.000557 + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 Origination: From: [PUBLIC_KEY_HASH] Credit: ꜩ0 @@ -55,7 +55,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 254 bytes Paid storage size diff: 254 bytes - Consumed gas: 649.972 + Consumed gas: 649.882 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0635 storage fees ........................... +ꜩ0.0635 @@ -67,7 +67,7 @@ Contract memorized as split_bytes. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg 0xaabbcc Node is bootstrapped. -Estimated gas: 1320.096 units (will add 100 for safety) +Estimated gas: 1320.006 units (will add 100 for safety) Estimated storage: 18 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -94,7 +94,7 @@ This sequence of operations was run: Updated storage: { 0xaa ; 0xbb ; 0xcc } Storage size: 272 bytes Paid storage size diff: 18 bytes - Consumed gas: 1320.632 + Consumed gas: 1320.542 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0045 storage fees ........................... +ꜩ0.0045 @@ -105,7 +105,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg 0xddeeff Node is bootstrapped. -Estimated gas: 1322.712 units (will add 100 for safety) +Estimated gas: 1322.622 units (will add 100 for safety) Estimated storage: 18 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -132,7 +132,7 @@ This sequence of operations was run: Updated storage: { 0xaa ; 0xbb ; 0xcc ; 0xdd ; 0xee ; 0xff } Storage size: 290 bytes Paid storage size diff: 18 bytes - Consumed gas: 1323.248 + Consumed gas: 1323.158 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0045 storage fees ........................... +ꜩ0.0045 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_split_string.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_split_string.out index 367243708cbf21fe37d8b7ca933673b5e6ffb3ff..b30080abed65e7543b94f78a8c83d485e704643f 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_split_string.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_split_string.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract split_string transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/split_string.tz --init '{}' --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 650.005 units (will add 100 for safety) +Estimated gas: 649.915 units (will add 100 for safety) Estimated storage: 511 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_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: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000557 + Fee to the baker: ꜩ0.000556 Expected counter: 1 - Gas limit: 751 + Gas limit: 750 Storage limit: 531 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000557 - payload fees(the block proposer) ....... +ꜩ0.000557 + [PUBLIC_KEY_HASH] ... -ꜩ0.000556 + payload fees(the block proposer) ....... +ꜩ0.000556 Origination: From: [PUBLIC_KEY_HASH] Credit: ꜩ0 @@ -55,7 +55,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 254 bytes Paid storage size diff: 254 bytes - Consumed gas: 649.972 + Consumed gas: 649.882 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0635 storage fees ........................... +ꜩ0.0635 @@ -67,7 +67,7 @@ Contract memorized as split_string. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"abc"' Node is bootstrapped. -Estimated gas: 1320.160 units (will add 100 for safety) +Estimated gas: 1320.070 units (will add 100 for safety) Estimated storage: 18 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -94,7 +94,7 @@ This sequence of operations was run: Updated storage: { "a" ; "b" ; "c" } Storage size: 272 bytes Paid storage size diff: 18 bytes - Consumed gas: 1320.696 + Consumed gas: 1320.606 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0045 storage fees ........................... +ꜩ0.0045 @@ -105,7 +105,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"def"' Node is bootstrapped. -Estimated gas: 1322.848 units (will add 100 for safety) +Estimated gas: 1322.758 units (will add 100 for safety) Estimated storage: 18 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -132,7 +132,7 @@ This sequence of operations was run: Updated storage: { "a" ; "b" ; "c" ; "d" ; "e" ; "f" } Storage size: 290 bytes Paid storage size diff: 18 bytes - Consumed gas: 1323.384 + Consumed gas: 1323.294 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0045 storage fees ........................... +ꜩ0.0045 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_trace_origination_compare_big_type.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_trace_origination_compare_big_type.out index f85e5501f5209f3a051911a9ff0d09e44556367f..80da41e9581e1d21f68ca7204ab6b89cf46193ca 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_trace_origination_compare_big_type.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_trace_origination_compare_big_type.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract compare_big_type transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/compare_big_type.tz --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 1611.480 units (will add 100 for safety) +Estimated gas: 1611.390 units (will add 100 for safety) Estimated storage: 385 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -78,7 +78,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 128 bytes Paid storage size diff: 128 bytes - Consumed gas: 1611.446 + Consumed gas: 1611.356 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.032 storage fees ........................... +ꜩ0.032 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_trace_origination_compare_big_type2.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_trace_origination_compare_big_type2.out index eb6d41f503cfad68024937500b35b618a8758a59..0e4c287b5e72bd729202abc856e16ab0c539e56f 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_trace_origination_compare_big_type2.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_trace_origination_compare_big_type2.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract compare_big_type2 transferring 0 from bootstrap1 running michelson_test_scripts/opcodes/compare_big_type2.tz --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 1771.634 units (will add 100 for safety) +Estimated gas: 1771.544 units (will add 100 for safety) Estimated storage: 393 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -82,7 +82,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 136 bytes Paid storage size diff: 136 bytes - Consumed gas: 1771.600 + Consumed gas: 1771.510 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.034 storage fees ........................... +ꜩ0.034 diff --git a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_transfer_tokens.out b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_transfer_tokens.out index 5f824663924fb8dee752e2795fd8416d59d67290..75e4d0c6cd2c18d17de15a0d5a992aeff3f048b9 100644 --- a/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_transfer_tokens.out +++ b/tezt/tests/expected/contract_onchain_opcodes.ml/Alpha- Contract onchain opcodes- test_transfer_tokens.out @@ -89,7 +89,7 @@ Contract memorized as test_transfer_contract2. ./octez-client --mode mockup --wait none originate contract transfer_tokens transferring 1000 from bootstrap1 running michelson_test_scripts/opcodes/transfer_tokens.tz --burn-cap 10 --force Node is bootstrapped. -Estimated gas: 589.415 units (will add 100 for safety) +Estimated gas: 589.235 units (will add 100 for safety) Estimated storage: 323 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,7 +129,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 66 bytes Paid storage size diff: 66 bytes - Consumed gas: 589.382 + Consumed gas: 589.202 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -143,7 +143,7 @@ Contract memorized as transfer_tokens. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 2948.774 units (will add 100 for safety) +Estimated gas: 2948.594 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,7 +169,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 66 bytes - Consumed gas: 1741.557 + Consumed gas: 1741.377 Internal operations: Internal Transaction: Amount: ꜩ100 @@ -186,7 +186,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 10 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 2948.774 units (will add 100 for safety) +Estimated gas: 2948.594 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -212,7 +212,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 66 bytes - Consumed gas: 1741.557 + Consumed gas: 1741.377 Internal operations: Internal Transaction: Amount: ꜩ100 diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input254251340-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input254251340-.out index ec8fe7cc7ee5fb6760048f4c0f42506f44f6829a..8be48c1e09f76f6833738063827b94582895fb03 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input254251340-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input254251340-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 10.211) + - location: 7 (just consumed gas: 10.031) [ (Pair 948 Unit) ] - location: 7 (just consumed gas: 0.010) [ 948 ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input420401245-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input420401245-.out index c5f6016e97e76c65ac24bea0b971bb61d2825800..809616da5be7f455ecc1822586c794b94a3fd817 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input420401245-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input420401245-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 10.211) + - location: 7 (just consumed gas: 10.031) [ (Pair 12039123919239192312931 Unit) ] - location: 7 (just consumed gas: 0.010) [ 12039123919239192312931 ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input680650890-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input680650890-.out index 889308f66e9789d84a8569f3a18eac2c7f3e4017..1496a9cf81b7083d9d0d7120089bd37a22dc4774 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input680650890-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -abs--storage125992234--input680650890-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 10.211) + - location: 7 (just consumed gas: 10.031) [ (Pair 0 Unit) ] - location: 7 (just consumed gas: 0.010) [ 0 ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add--storage125992234--input125992234-.out index 9e99cb7e119c1075a595d3f5c6156bbdd74691ed..4856e3ebb546dc851207a1124910eec4e05bfa7d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -add--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 68.449) + - location: 7 (just consumed gas: 67.729) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ Unit ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_binary--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_binary--storage125992234--input125992234-.out index af7abbecab578c58ee31e9013e610b7f95026e35..e808547aac77e6e0119157bf1c4b8f93bc7ac34b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_binary--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_binary--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 36.249) + - location: 7 (just consumed gas: 35.799) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_bytes--storage125992234--input125992234-.out index 3e2df28b55453f4e156f0c259ec9f1e09af66b5e..443c0e9d245860d61f671ca62d9a6fdcf4a1a128 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -and_bytes--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 28.329) + - location: 7 (just consumed gas: 27.969) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out index f7ed78c62f327ca2fc81d6205bde585fa069e4a7..6ac1df8b6a61701ba4eb9d119f70ce0e2a72c1ea 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bls12_381_fr_to_mutez--storage680650890--input229402968-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 9.316) + - location: 7 (just consumed gas: 9.226) [ (Pair 0x1000000000000000000000000000000000000000000000000000000000000000 0) ] - location: 7 (just consumed gas: 0.010) [ 0x1000000000000000000000000000000000000000000000000000000000000000 ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bytes_of_int--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bytes_of_int--storage125992234--input125992234-.out index 3bd13a79444c0b88198bd29c592cd12e134f163a..09e090cfb612398e24b17d689a226904f0c2d35f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bytes_of_int--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bytes_of_int--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 118.175) + - location: 7 (just consumed gas: 116.645) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bytes_of_nat--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bytes_of_nat--storage125992234--input125992234-.out index 30481674f273f4e39f794bc8e96589356a138ac7..d8e7a29ed19277160d7777aa1ab073b8d3788929 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bytes_of_nat--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -bytes_of_nat--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 53.702) + - location: 7 (just consumed gas: 52.982) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-get--storage125992234--input186507116-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-get--storage125992234--input186507116-.out index 8c880313e2d422b7db3f8201845a0cf9a3bf30b3..5fedc3aafcb184f22a73ff829c16dd3054fb4e5b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-get--storage125992234--input186507116-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-get--storage125992234--input186507116-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 11 (just consumed gas: 43.348) + - location: 11 (just consumed gas: 42.718) [ (Pair (Pair 1 4 2 Unit) Unit) ] - location: 11 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set--storage186507116--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set--storage186507116--input125992234-.out index 2a60bf77b1ed94e5014c40801f94b2961f236308..792a3b0366062615e8337fb10d04e31726024eeb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set--storage186507116--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -comb-set--storage186507116--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 11 (just consumed gas: 12.667) + - location: 11 (just consumed gas: 12.577) [ (Pair Unit 1 4 2 Unit) ] - location: 11 (just consumed gas: 0.010) [ (Pair 1 4 2 Unit) ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -compare--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -compare--storage125992234--input125992234-.out index 514eecf097bafdf6b534f45ffb9398370795a940..155a3b68cd5b158a99b098ae0302ac2e8e3b870c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -compare--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -compare--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 200.472) + - location: 7 (just consumed gas: 197.772) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contract--storage125992234--input117475800-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contract--storage125992234--input117475800-.out index 31e3dcc79e868ad35767dc081b798b1ff6d87bb6..a6cb79d811e25325e9a2258deaea2d68e6244321 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contract--storage125992234--input117475800-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -contract--storage125992234--input117475800-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 12.110) + - location: 7 (just consumed gas: 11.930) [ (Pair "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" Unit) ] - location: 7 (just consumed gas: 0.010) [ "tz1cxcwwnzENRdhe2Kb8ZdTrdNy4bFNyScx5" ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -create_contract--storage921624073--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -create_contract--storage921624073--input125992234-.out index 502ed5a253688051b3143aad4a869e9467c626a9..4ffcc67471735e09f59db2f70b9ea58afdaf8d2d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -create_contract--storage921624073--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -create_contract--storage921624073--input125992234-.out @@ -13,7 +13,7 @@ emitted operations big_map diff trace - - location: 8 (just consumed gas: 12.061) + - location: 8 (just consumed gas: 11.971) [ (Pair Unit None) ] - location: 8 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq--storage125992234--input246866101-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq--storage125992234--input246866101-.out index 5c2856ebdf9dc79f7e24e97dfed3b21f0b7b259e..bee541dbee6c7f48f2883a8e476a9202f77adb6a 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq--storage125992234--input246866101-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq--storage125992234--input246866101-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 24 (just consumed gas: 159.743) + - location: 24 (just consumed gas: 159.563) [ (Pair (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) Unit) ] - location: 24 (just consumed gas: 0.010) [ (Pair 17 16 15 14 13 12 11 10 9 8 7 6 5 4 3 2 1) ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq--storage125992234--input26856104-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq--storage125992234--input26856104-.out index fd4400c72a56233be1f9f0bc06c730bee625cfab..4de4c123d80211f380fedd56722da91c71ef23ac 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq--storage125992234--input26856104-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dig_eq--storage125992234--input26856104-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 24 (just consumed gas: 159.743) + - location: 24 (just consumed gas: 159.563) [ (Pair (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) Unit) ] - location: 24 (just consumed gas: 0.010) [ (Pair 2 3 12 16 10 14 19 9 18 6 8 11 4 13 15 5 1) ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dup-n--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dup-n--storage125992234--input125992234-.out index 812e516bc21e77ef73a6a6907e723c19af450722..b64431d72c2ad3a0b27743f6b0832183abc4a5e7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dup-n--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -dup-n--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 42.228) + - location: 7 (just consumed gas: 41.688) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -emit--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -emit--storage125992234--input125992234-.out index 33ae1614d2e26bdfc2319622ae58384ad11e11b4..0bc7f071f1280b0d26d515e49a005f5a3daa8da7 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -emit--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -emit--storage125992234--input125992234-.out @@ -16,7 +16,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 13.135) + - location: 7 (just consumed gas: 13.045) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first--storage492856247--input478406404-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first--storage492856247--input478406404-.out index 86f36411e11d7c85a86de3aa9944fe05613ebc17..9c88ce1380a1aa3540caa98999c86d8742309dfa 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first--storage492856247--input478406404-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first--storage492856247--input478406404-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 8 (just consumed gas: 7.522) + - location: 8 (just consumed gas: 7.432) [ (Pair { 4 } 111) ] - location: 8 (just consumed gas: 0.010) [ { 4 } ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first--storage492856247--input962874972-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first--storage492856247--input962874972-.out index e251cc686ad993f137e8f7c14299486476881735..c42bda715a5169ef031803aef4f05c99eacd9150 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first--storage492856247--input962874972-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -first--storage492856247--input962874972-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 8 (just consumed gas: 7.822) + - location: 8 (just consumed gas: 7.732) [ (Pair { 1 ; 2 ; 3 ; 4 } 111) ] - location: 8 (just consumed gas: 0.010) [ { 1 ; 2 ; 3 ; 4 } ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -lsl_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -lsl_bytes--storage125992234--input125992234-.out index 89e69340568cf8b08d333c813b6c85ef80226ee0..bb484c7a513076fd394f0c706e1b0aafeea7016f 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -lsl_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -lsl_bytes--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 36.249) + - location: 7 (just consumed gas: 35.799) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -lsr_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -lsr_bytes--storage125992234--input125992234-.out index 2ae9d867969a0b0cdf6be2b61804de8698fad463..91cd20aeb3b05874e44ffef628426d0a60af394d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -lsr_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -lsr_bytes--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 52.699) + - location: 7 (just consumed gas: 52.069) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mul--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mul--storage125992234--input125992234-.out index 033ad7a67eb1001f7b859150e3d968b4380cde94..14289d13ff50882bba62d1f7e268340d6b04c670 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mul--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mul--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 50.799) + - location: 7 (just consumed gas: 50.169) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ Unit ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out index 126bcbfa2c6ce26190340da25ba1545bf634cbbe..a456c5d96e9f35454c10ec7645f0ef61b0b7c54b 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr--storage151303925--input216277421-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 10.947) + - location: 7 (just consumed gas: 10.857) [ (Pair 257 0x0000000000000000000000000000000000000000000000000000000000000000) ] - location: 7 (just consumed gas: 0.010) [ 257 ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out index 30b8938fc7cf3427af769a903f0286f69e26965d..13fc83b10e778ad196b5c13e709189541d465eeb 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -mutez_to_bls12_381_fr--storage287799761--input485842614-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 10.947) + - location: 7 (just consumed gas: 10.857) [ (Pair 16 0x0200000000000000000000000000000000000000000000000000000000000000) ] - location: 7 (just consumed gas: 0.010) [ 16 ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_bytes--storage125992234--input125992234-.out index b4f1e0fa5a67387fbaac0f68e6fe956e947067f8..29f34211f48f6077543a01078d7f2df23c3f1ff9 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -not_bytes--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 25.094) + - location: 7 (just consumed gas: 24.734) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_bytes--storage125992234--input125992234-.out index 069987bd4c4d6669591cec18f8e3284afb7a684a..8688e61896a06485478fb335e1ed57a11aff397d 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -or_bytes--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 28.329) + - location: 7 (just consumed gas: 27.969) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev--storage125992234--input305844558-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev--storage125992234--input305844558-.out index 7b694101cab40a68684231a8dd4356714e02ad7c..f211a1bd8ccb3a6fd9827d0ec79fded685df8d11 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev--storage125992234--input305844558-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev--storage125992234--input305844558-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 16 (just consumed gas: 148.783) + - location: 16 (just consumed gas: 146.623) [ (Pair (Pair -1 1 "foobar" diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev--storage125992234--input646365167-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev--storage125992234--input646365167-.out index 2a6b66c8c7937038e20d73d9eb8c585c3029a717..d6720f3c67b8a3c4de1b8aaa9e77377ec616520c 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev--storage125992234--input646365167-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev--storage125992234--input646365167-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 16 (just consumed gas: 148.783) + - location: 16 (just consumed gas: 146.623) [ (Pair (Pair -1 1 "foobar" diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out index 101b4253219ee6b4586aea7a156efffa555524d8..2f7dd4b18f0d141af9083a35357eb44bae43f989 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty--storage125992234--input1028781121-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 28 (just consumed gas: 503.139) + - location: 28 (just consumed gas: 501.249) [ (Pair (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out index 78f57e647ecaae70c64151092014905f3eace066..a38f91836621d584c6665907ac8ffbed211b3211 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -packunpack_rev_cty--storage125992234--input802670583-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 28 (just consumed gas: 493.644) + - location: 28 (just consumed gas: 491.754) [ (Pair (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" Unit "edsigthTzJ8X7MPmNeEwybRAvdxS1pupqcM5Mk4uCuyZAe7uEk68YpuGDeViW8wSXMrCi5CwoNgqs8V2w8ayB5dMJzrYCHhD8C7" diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_address--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_address--storage125992234--input125992234-.out index 4ff76b10c0be4ee43c17ca89c3d0eb1126c6a668..67bd179a01650828239e5ecaa33675a9a388b916 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_address--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_address--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 13.726) + - location: 7 (just consumed gas: 13.456) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out index 97a5fe6651f48ff3b8c3be7f9b0ef3bec6b9b9d7..1f8b329ac947da7a160f9f958b4155faa9aa8a5e 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_default_entrypoint--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 13 (just consumed gas: 15.515) + - location: 13 (just consumed gas: 15.335) [ (Pair (Right (Left Unit)) Unit) ] - location: 13 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_entrypoint--storage125992234--input289072903-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_entrypoint--storage125992234--input289072903-.out index 13f1edf71730a5a1353b281ad944a90b12928aa8..a9e38ffc1eb80deb7de8fdd5604583d1a9aa7588 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_entrypoint--storage125992234--input289072903-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -self_with_entrypoint--storage125992234--input289072903-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 13 (just consumed gas: 40.124) + - location: 13 (just consumed gas: 39.854) [ (Pair (Left (Left 0)) Unit) ] - location: 13 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub--storage921624073--input706350605-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub--storage921624073--input706350605-.out index f38818b4629d6b9d0f819407d2b765a5992da3b8..98a9c678e2973b6ea338f74eca07b22fd5c0cccd 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub--storage921624073--input706350605-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub--storage921624073--input706350605-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 12 (just consumed gas: 16.995) + - location: 12 (just consumed gas: 16.905) [ (Pair (Pair 2310000 1010000) None) ] - location: 12 (just consumed gas: 0.010) [ (Pair 2310000 1010000) ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub--storage921624073--input856198194-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub--storage921624073--input856198194-.out index 47276bad8c294c7fb7ee8bab5bf772218b288368..d166f51b9c5306653f8ebdab208095c1221d9ed4 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub--storage921624073--input856198194-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -tez_add_sub--storage921624073--input856198194-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 12 (just consumed gas: 16.995) + - location: 12 (just consumed gas: 16.905) [ (Pair (Pair 2000000 1000000) None) ] - location: 12 (just consumed gas: 0.010) [ (Pair 2000000 1000000) ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -unpair--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -unpair--storage125992234--input125992234-.out index f2d2e5b14e865fff6f05ea50b7f292af1c186f3f..3ec02934e00cfb7df53c769e5469852532cf3789 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -unpair--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -unpair--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 127.791) + - location: 7 (just consumed gas: 126.441) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor_bytes--storage125992234--input125992234-.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor_bytes--storage125992234--input125992234-.out index 6d3b7f6e65448974a05b11e87f4dda778d525153..7858ee9be90d909f82f0463ccaae341545f6d460 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor_bytes--storage125992234--input125992234-.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- opcodes -xor_bytes--storage125992234--input125992234-.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 7 (just consumed gas: 28.329) + - location: 7 (just consumed gas: 27.969) [ (Pair Unit Unit) ] - location: 7 (just consumed gas: 0.010) [ ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- big_map_contract_io.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- big_map_contract_io.out index a3c2b8fc908ce3fe687db66e57ae1600a6693c60..9252d12eb06c21f0ba86f329a9098c2c588b76af 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- big_map_contract_io.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- big_map_contract_io.out @@ -672,7 +672,7 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["2"] to "two" trace - - location: 43 (just consumed gas: 62.128) + - location: 43 (just consumed gas: 61.768) [ (Pair (Left Unit) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - location: 43 (just consumed gas: 0.010) [ (Left Unit) @@ -716,7 +716,7 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["3"] to "three" trace - - location: 43 (just consumed gas: 65.416) + - location: 43 (just consumed gas: 65.056) [ (Pair (Right (Left (Left (Pair { Elt "3" "three" } { Elt "4" "four" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - location: 43 (just consumed gas: 0.010) @@ -752,7 +752,7 @@ emitted operations big_map diff trace - - location: 43 (just consumed gas: 62.768) + - location: 43 (just consumed gas: 62.408) [ (Pair (Right (Left (Right Unit))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - location: 43 (just consumed gas: 0.010) [ (Right (Left (Right Unit))) @@ -790,7 +790,7 @@ big_map diff New map(4) of type (big_map string string) Set map(4)["foo"] to "bar" trace - - location: 43 (just consumed gas: 60.906) + - location: 43 (just consumed gas: 60.546) [ (Pair (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) (Right Unit)) ] - location: 43 (just consumed gas: 0.010) [ (Right (Right (Left (Pair { Pair "foo" "bar" } { Pair "gaz" "baz" })))) @@ -926,7 +926,7 @@ big_map diff Set map(4)["3"] to "three" Set map(4)["1"] to "one" trace - - location: 43 (just consumed gas: 63.036) + - location: 43 (just consumed gas: 62.676) [ (Pair (Right (Right (Right (Left { Pair "3" "three" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - location: 43 (just consumed gas: 0.010) @@ -1015,7 +1015,7 @@ big_map diff New map(4) of type (big_map string string) Unset map(4)["1"] trace - - location: 43 (just consumed gas: 62.772) + - location: 43 (just consumed gas: 62.412) [ (Pair (Right (Right (Right (Right { "1" })))) (Left (Pair { Elt "1" "one" } { Elt "2" "two" }))) ] - location: 43 (just consumed gas: 0.010) diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- check_signature.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- check_signature.out index 0102e4185557388b83643177815d40f1a1c30f6e..d6e752c4eced96eef482e52096021f125cc23e33 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- check_signature.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- check_signature.out @@ -8,7 +8,7 @@ emitted operations big_map diff trace - - location: 9 (just consumed gas: 346.280) + - location: 9 (just consumed gas: 346.190) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "hello") ] @@ -138,7 +138,7 @@ At line 8 characters 14 to 18, script reached FAILWITH instruction with Unit trace - - location: 9 (just consumed gas: 346.270) + - location: 9 (just consumed gas: 346.180) [ (Pair "edpkuBknW28nW72KG6RoHtYW7p12T6GKc7nAbwYX5m8Wd9sDVC9yav" "edsigu3QszDjUpeqYqbvhyRxMpVFamEnvm9FYnt7YiiNt9nmjYfh8ZTbsybZ5WnBkhA7zfHsRVyuTnRsGLR6fNHt1Up1FxgyRtF" "abcd") ] diff --git a/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- pack_unpack.out b/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- pack_unpack.out index e30afebf104264200847596434872baada64bcc5..233f87247b52a3ca18cdec50e2aff34815a7e654 100644 --- a/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- pack_unpack.out +++ b/tezt/tests/expected/contract_opcodes.ml/Alpha- test Michelson opcodes- pack_unpack.out @@ -7,7 +7,7 @@ emitted operations big_map diff trace - - location: 15 (just consumed gas: 19.769) + - location: 15 (just consumed gas: 19.499) [ (Pair (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f020000000800030007000900010200000006000100020003) Unit) ] @@ -70,7 +70,7 @@ At line 4 characters 14 to 26, script reached FAILWITH instruction with Unit trace - - location: 15 (just consumed gas: 19.769) + - location: 15 (just consumed gas: 19.499) [ (Pair (Pair (Pair (Pair "toto" { 3 ; 7 ; 9 ; 1 }) { 1 ; 2 ; 3 }) 0x05070707070100000004746f746f0200000008000300070009000102000000060001000200030004) Unit) ] diff --git a/tezt/tests/expected/create_contract.ml/Alpha- Create contract.out b/tezt/tests/expected/create_contract.ml/Alpha- Create contract.out index 590266bef812fe5ec1382a182498a50b0212caa6..3a4686fd33162595ec7bdf7ccc58376667577c7c 100644 --- a/tezt/tests/expected/create_contract.ml/Alpha- Create contract.out +++ b/tezt/tests/expected/create_contract.ml/Alpha- Create contract.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract originate_contract transferring 200 from bootstrap1 running michelson_test_scripts/mini_scenarios/originate_contract.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 599.777 units (will add 100 for safety) +Estimated gas: 599.687 units (will add 100 for safety) Estimated storage: 350 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -41,7 +41,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 93 bytes Paid storage size diff: 93 bytes - Consumed gas: 599.743 + Consumed gas: 599.653 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02325 storage fees ........................... +ꜩ0.02325 @@ -55,7 +55,7 @@ Contract memorized as originate_contract. ./octez-client --mode mockup --wait none transfer 1 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg Unit Node is bootstrapped. -Estimated gas: 1794.177 units (will add 100 for safety) +Estimated gas: 1794.087 units (will add 100 for safety) Estimated storage: 295 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -80,7 +80,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 93 bytes - Consumed gas: 1289.501 + Consumed gas: 1289.411 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ1 [CONTRACT_HASH] ... +ꜩ1 diff --git a/tezt/tests/expected/self_address_transfer.ml/Alpha- Self address transfer.out b/tezt/tests/expected/self_address_transfer.ml/Alpha- Self address transfer.out index 88b38d676bb0d7519501484d1d4f86fc6ed8ccee..671a49d97d5dc999f892fd6b207bd178576436a3 100644 --- a/tezt/tests/expected/self_address_transfer.ml/Alpha- Self address transfer.out +++ b/tezt/tests/expected/self_address_transfer.ml/Alpha- Self address transfer.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract self_address_sender transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/self_address_sender.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 592.748 units (will add 100 for safety) +Estimated gas: 592.658 units (will add 100 for safety) Estimated storage: 339 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -39,7 +39,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 82 bytes Paid storage size diff: 82 bytes - Consumed gas: 592.715 + Consumed gas: 592.625 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0205 storage fees ........................... +ꜩ0.0205 @@ -51,7 +51,7 @@ Contract memorized as self_address_sender. ./octez-client --mode mockup --wait none originate contract self_address_receiver transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/self_address_receiver.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 593.190 units (will add 100 for safety) +Estimated gas: 593.010 units (will add 100 for safety) Estimated storage: 340 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -89,7 +89,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 83 bytes Paid storage size diff: 83 bytes - Consumed gas: 593.157 + Consumed gas: 592.977 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02075 storage fees ........................... +ꜩ0.02075 @@ -101,7 +101,7 @@ Contract memorized as self_address_receiver. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 2962.097 units (will add 100 for safety) +Estimated gas: 2961.827 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -114,7 +114,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000601 Expected counter: 1 - Gas limit: 3063 + Gas limit: 3062 Storage limit: 0 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000601 @@ -127,7 +127,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 82 bytes - Consumed gas: 1746.191 + Consumed gas: 1746.101 Internal operations: Internal Transaction: Amount: ꜩ0 @@ -137,5 +137,5 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: Unit Storage size: 83 bytes - Consumed gas: 1217.087 + Consumed gas: 1216.907 diff --git a/tezt/tests/expected/ticket_receipt_and_rpc.ml/Alpha- Ticket updates in receipt.out b/tezt/tests/expected/ticket_receipt_and_rpc.ml/Alpha- Ticket updates in receipt.out index ff6690df93464cebf3ed6b9ea6385cbdac318533..a9cdd273f5fb26013593a1ef90fbe8eca69847d3 100644 --- a/tezt/tests/expected/ticket_receipt_and_rpc.ml/Alpha- Ticket updates in receipt.out +++ b/tezt/tests/expected/ticket_receipt_and_rpc.ml/Alpha- Ticket updates in receipt.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --arg '(Pair "[CONTRACT_HASH]" "[CONTRACT_HASH]")' Node is bootstrapped. -Estimated gas: 7901.227 units (will add 100 for safety) +Estimated gas: 7900.777 units (will add 100 for safety) Estimated storage: 475 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -14,7 +14,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.001139 Expected counter: 1 - Gas limit: 8002 + Gas limit: 8001 Storage limit: 495 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.001139 @@ -31,7 +31,7 @@ This sequence of operations was run: Pair 0x01c97ff8e547ecb335bdf832511361d68e928c6ec300 (Pair "green" 1) } Storage size: 525 bytes Paid storage size diff: 325 bytes - Consumed gas: 3194.103 + Consumed gas: 3193.653 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.08125 storage fees ........................... +ꜩ0.08125 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Create and remove tickets.out b/tezt/tests/expected/tickets.ml/Alpha- Create and remove tickets.out index dfe0869ab3726ba14d4ec636e789803db717cdac..e54bb804ae79b6f8903584b38c1ba3f37e403366 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Create and remove tickets.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Create and remove tickets.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract add_clear_tickets transferring 200 from bootstrap1 running michelson_test_scripts/mini_scenarios/add_clear_tickets_015.tz --init '{}' --burn-cap 1 Node is bootstrapped. -Estimated gas: 610.470 units (will add 100 for safety) +Estimated gas: 610.380 units (will add 100 for safety) Estimated storage: 398 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -44,7 +44,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 141 bytes Paid storage size diff: 141 bytes - Consumed gas: 610.436 + Consumed gas: 610.346 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.03525 storage fees ........................... +ꜩ0.03525 @@ -58,7 +58,7 @@ Contract memorized as add_clear_tickets. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "A"' Node is bootstrapped. -Estimated gas: 1752.086 units (will add 100 for safety) +Estimated gas: 1751.996 units (will add 100 for safety) Estimated storage: 105 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -71,7 +71,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000453 Expected counter: 1 - Gas limit: 1853 + Gas limit: 1852 Storage limit: 125 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000453 @@ -87,7 +87,7 @@ This sequence of operations was run: { Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "A" 1) } Storage size: 180 bytes Paid storage size diff: 105 bytes - Consumed gas: 1752.664 + Consumed gas: 1752.574 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02625 storage fees ........................... +ꜩ0.02625 @@ -101,7 +101,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint clear --arg Unit Node is bootstrapped. -Estimated gas: 1941.758 units (will add 100 for safety) +Estimated gas: 1941.668 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -127,7 +127,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: {} Storage size: 141 bytes - Consumed gas: 1942.337 + Consumed gas: 1942.247 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -138,7 +138,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "B"' Node is bootstrapped. -Estimated gas: 1752.086 units (will add 100 for safety) +Estimated gas: 1751.996 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -151,7 +151,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000453 Expected counter: 3 - Gas limit: 1853 + Gas limit: 1852 Storage limit: 0 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000453 @@ -166,7 +166,7 @@ This sequence of operations was run: Updated storage: { Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "B" 1) } Storage size: 180 bytes - Consumed gas: 1752.664 + Consumed gas: 1752.574 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string @@ -177,7 +177,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 2 --entrypoint add --arg 'Pair 1 "C"' Node is bootstrapped. -Estimated gas: 2434.095 units (will add 100 for safety) +Estimated gas: 2434.005 units (will add 100 for safety) Estimated storage: 105 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -207,7 +207,7 @@ This sequence of operations was run: Pair 0x01435e1f410af86271d7c8c3c98a8708157a45269200 (Pair "B" 1) } Storage size: 219 bytes Paid storage size diff: 105 bytes - Consumed gas: 2434.673 + Consumed gas: 2434.583 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.02625 storage fees ........................... +ꜩ0.02625 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Minting then sending tickets to smart-contract rollup should succeed with.out b/tezt/tests/expected/tickets.ml/Alpha- Minting then sending tickets to smart-contract rollup should succeed with.out index d6051495412fdda4c53db3a890a8d62ca86ffa9a..1cd8f67a6b5cbb75a9e9dca6d37bcd90b90b9eb7 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Minting then sending tickets to smart-contract rollup should succeed with.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Minting then sending tickets to smart-contract rollup should succeed with.out @@ -1,7 +1,7 @@ ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[SMART_ROLLUP_HASH]"' Node is bootstrapped. -Estimated gas: 2784.628 units (will add 100 for safety) +Estimated gas: 2784.268 units (will add 100 for safety) Estimated storage: 132 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -28,7 +28,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 197 bytes Paid storage size diff: 132 bytes - Consumed gas: 2674.654 + Consumed gas: 2674.294 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.033 storage fees ........................... +ꜩ0.033 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Overdrafting ticket from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Alpha- Overdrafting ticket from implicit accounts must be rejected.out index d0e4923c0192fea1eda6ce70fe53c27970c68eb3..fa023e31367f123676acd4031339e5b904bf9e50 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Overdrafting ticket from implicit accounts must be rejected.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Overdrafting ticket from implicit accounts must be rejected.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) +Estimated gas: 614.291 units (will add 100 for safety) Estimated storage: 415 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -48,7 +48,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 158 bytes Paid storage size diff: 158 bytes - Consumed gas: 614.348 + Consumed gas: 614.258 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0395 storage fees ........................... +ꜩ0.0395 @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) +Estimated gas: 1858.728 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.998 + Consumed gas: 1758.908 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -130,7 +130,7 @@ Error: ./octez-client --mode mockup --wait none originate contract tickets_bag transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_bag_016.tz --init '{}' --burn-cap 1 Node is bootstrapped. -Estimated gas: 620.652 units (will add 100 for safety) +Estimated gas: 620.562 units (will add 100 for safety) Estimated storage: 451 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -177,7 +177,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 194 bytes Paid storage size diff: 194 bytes - Consumed gas: 620.619 + Consumed gas: 620.529 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0485 storage fees ........................... +ꜩ0.0485 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Send tickets between originated contracts and implicit accounts.out b/tezt/tests/expected/tickets.ml/Alpha- Send tickets between originated contracts and implicit accounts.out index 04f820ec16d88979e971b90e7a474e190efceb4a..dea15ec76ad8dd8c4b105c97ee6262fdcd62988f 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Send tickets between originated contracts and implicit accounts.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Send tickets between originated contracts and implicit accounts.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) +Estimated gas: 614.291 units (will add 100 for safety) Estimated storage: 415 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -48,7 +48,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 158 bytes Paid storage size diff: 158 bytes - Consumed gas: 614.348 + Consumed gas: 614.258 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0395 storage fees ........................... +ꜩ0.0395 @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none originate contract tickets_bag transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_bag_016.tz --init '{}' --burn-cap 1 Node is bootstrapped. -Estimated gas: 620.652 units (will add 100 for safety) +Estimated gas: 620.562 units (will add 100 for safety) Estimated storage: 451 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -107,7 +107,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 194 bytes Paid storage size diff: 194 bytes - Consumed gas: 620.619 + Consumed gas: 620.529 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0485 storage fees ........................... +ꜩ0.0485 @@ -163,7 +163,7 @@ Contract memorized as tickets_blackhole. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 3' Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) +Estimated gas: 1858.728 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -190,7 +190,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.998 + Consumed gas: 1758.908 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -263,7 +263,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 1 tickets from bootstrap2 to '[CONTRACT_HASH]' with entrypoint save and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 Node is bootstrapped. -Estimated gas: 3207.355 units (will add 100 for safety) +Estimated gas: 3207.265 units (will add 100 for safety) Estimated storage: 110 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -313,7 +313,7 @@ This sequence of operations was run: { Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1) } Storage size: 238 bytes Paid storage size diff: 44 bytes - Consumed gas: 1911.415 + Consumed gas: 1911.325 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.011 storage fees ........................... +ꜩ0.011 @@ -333,7 +333,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint send --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 4717.552 units (will add 100 for safety) +Estimated gas: 4717.462 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -360,7 +360,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: {} Storage size: 194 bytes - Consumed gas: 2864.858 + Consumed gas: 2864.768 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts with some Tez along.out b/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts with some Tez along.out index b746f178be307588d313e94f4e98db2ff15b5cc3..8465a39d8e4254ef5da8a6295873f45fa8567b20 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts with some Tez along.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts with some Tez along.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract tickets_send_with_tez transferring 1 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_with_tez_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 612.587 units (will add 100 for safety) +Estimated gas: 612.497 units (will add 100 for safety) Estimated storage: 411 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -47,7 +47,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 154 bytes Paid storage size diff: 154 bytes - Consumed gas: 612.554 + Consumed gas: 612.464 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0385 storage fees ........................... +ꜩ0.0385 @@ -61,7 +61,7 @@ Contract memorized as tickets_send_with_tez. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[PUBLIC_KEY_HASH]"' Node is bootstrapped. -Estimated gas: 1857.302 units (will add 100 for safety) +Estimated gas: 1857.212 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -88,7 +88,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 154 bytes Paid storage size diff: 66 bytes - Consumed gas: 1757.483 + Consumed gas: 1757.393 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts with the wrong type must.out b/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts with the wrong type must.out index 4ef9068eabf9a998dd2dd44185c0bd914348fc1d..360640776b37f890aedb1f820f8457ff77a49fc4 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts with the wrong type must.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts with the wrong type must.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract send_ticket_list transferring 1 from bootstrap1 running michelson_test_scripts/mini_scenarios/send_ticket_list_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 614.629 units (will add 100 for safety) +Estimated gas: 614.359 units (will add 100 for safety) Estimated storage: 402 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -49,7 +49,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 145 bytes Paid storage size diff: 145 bytes - Consumed gas: 614.596 + Consumed gas: 614.326 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.03625 storage fees ........................... +ꜩ0.03625 @@ -109,7 +109,7 @@ Contract memorized as tickets_list_blackhole. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 4064.546 units (will add 100 for safety) +Estimated gas: 4064.276 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -136,7 +136,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 145 bytes Paid storage size diff: 66 bytes - Consumed gas: 2211.797 + Consumed gas: 2211.527 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts.out b/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts.out index d518cd93d434a8480ccedb7a316923c1f6f55f57..a685e37c98b5244626826bb7b9c1103ebf113a42 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Send tickets from contracts to implicit accounts.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) +Estimated gas: 614.291 units (will add 100 for safety) Estimated storage: 415 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -48,7 +48,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 158 bytes Paid storage size diff: 158 bytes - Consumed gas: 614.348 + Consumed gas: 614.258 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0395 storage fees ........................... +ꜩ0.0395 @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) +Estimated gas: 1858.728 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.998 + Consumed gas: 1758.908 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out b/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out index 6a0d080d7f377d7920e8a61c0d554a9e1f7bf7e6..7b5826ebd556eed8c367d659f4e4a80121e1b707 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Send tickets in bigmap.out @@ -49,7 +49,7 @@ Contract memorized as receive_tickets_in_big_map. ./octez-client --mode mockup --wait none originate contract send_tickets_in_big_map transferring 200 from bootstrap1 running michelson_test_scripts/mini_scenarios/send_tickets_in_big_map_015.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 675.926 units (will add 100 for safety) +Estimated gas: 675.836 units (will add 100 for safety) Estimated storage: 577 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -123,7 +123,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 320 bytes Paid storage size diff: 320 bytes - Consumed gas: 675.893 + Consumed gas: 675.803 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.08 storage fees ........................... +ꜩ0.08 @@ -137,7 +137,7 @@ Contract memorized as send_tickets_in_big_map. ./octez-client --mode mockup --wait none transfer 0 from bootstrap2 to '[CONTRACT_HASH]' --burn-cap 30 --storage-limit 1000000 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 98835.811 units (will add 100 for safety) +Estimated gas: 98835.721 units (will add 100 for safety) Estimated storage: 10767 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -266,7 +266,7 @@ This sequence of operations was run: Set temp(1)[40] to (Pair 0x01b15c53925dc62a43681d4bdc4f24b31eeb31a49200 (Pair "BLUE" 1)) Storage size: 320 bytes Paid storage size diff: 67 bytes - Consumed gas: 49911.017 + Consumed gas: 49910.927 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Sending ticket from contract storage to implicit accounts.out b/tezt/tests/expected/tickets.ml/Alpha- Sending ticket from contract storage to implicit accounts.out index c84a77b151726392e88205fd5cd3c69b5ce6245a..1b1b44f5ebb69581b81bf572997a3b77f25722ca 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Sending ticket from contract storage to implicit accounts.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Sending ticket from contract storage to implicit accounts.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) +Estimated gas: 614.291 units (will add 100 for safety) Estimated storage: 415 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -48,7 +48,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 158 bytes Paid storage size diff: 158 bytes - Consumed gas: 614.348 + Consumed gas: 614.258 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0395 storage fees ........................... +ꜩ0.0395 @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none originate contract tickets_bag_implicit transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_bag_implicit_016.tz --init '{}' --burn-cap 1 Node is bootstrapped. -Estimated gas: 619.638 units (will add 100 for safety) +Estimated gas: 619.548 units (will add 100 for safety) Estimated storage: 440 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -107,7 +107,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 183 bytes Paid storage size diff: 183 bytes - Consumed gas: 619.605 + Consumed gas: 619.515 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.04575 storage fees ........................... +ꜩ0.04575 @@ -119,7 +119,7 @@ Contract memorized as tickets_bag_implicit. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) +Estimated gas: 1858.728 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -146,7 +146,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.998 + Consumed gas: 1758.908 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -171,7 +171,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 1 tickets from bootstrap1 to '[CONTRACT_HASH]' with entrypoint save and contents '"Ticket"' and type string and ticketer '[CONTRACT_HASH]' --burn-cap 1 Node is bootstrapped. -Estimated gas: 3176.844 units (will add 100 for safety) +Estimated gas: 3176.754 units (will add 100 for safety) Estimated storage: 44 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -217,7 +217,7 @@ This sequence of operations was run: { Pair 0x01fca241ad513615858a813a6019c5a5b3977c27dc00 (Pair "Ticket" 1) } Storage size: 227 bytes Paid storage size diff: 44 bytes - Consumed gas: 1910.908 + Consumed gas: 1910.818 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.011 storage fees ........................... +ꜩ0.011 @@ -237,7 +237,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint send --arg '"[PUBLIC_KEY_HASH]"' Node is bootstrapped. -Estimated gas: 2511.684 units (will add 100 for safety) +Estimated gas: 2511.594 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -264,7 +264,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: {} Storage size: 183 bytes - Consumed gas: 2411.864 + Consumed gas: 2411.774 Ticket updates: Ticketer: [CONTRACT_HASH] Content type: string diff --git a/tezt/tests/expected/tickets.ml/Alpha- Sending ticket of wrong type from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Alpha- Sending ticket of wrong type from implicit accounts must be rejected.out index 71f5aabbebfd18598e92dabb690b949026174014..80ff7d42856a1d02b943440b647f80d74ff71578 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Sending ticket of wrong type from implicit accounts must be rejected.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Sending ticket of wrong type from implicit accounts must be rejected.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) +Estimated gas: 614.291 units (will add 100 for safety) Estimated storage: 415 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -48,7 +48,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 158 bytes Paid storage size diff: 158 bytes - Consumed gas: 614.348 + Consumed gas: 614.258 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0395 storage fees ........................... +ꜩ0.0395 @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) +Estimated gas: 1858.728 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.998 + Consumed gas: 1758.908 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Sending tickets from storage to smart-contract rollup should succeed with.out b/tezt/tests/expected/tickets.ml/Alpha- Sending tickets from storage to smart-contract rollup should succeed with.out index c07a08a59f41e40a891a6221f551939f653c665a..ace75fc5624516b27d2249d2b382fa6a872f86d0 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Sending tickets from storage to smart-contract rollup should succeed with.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Sending tickets from storage to smart-contract rollup should succeed with.out @@ -1,7 +1,7 @@ ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --entrypoint mint Node is bootstrapped. -Estimated gas: 2222.694 units (will add 100 for safety) +Estimated gas: 2222.514 units (will add 100 for safety) Estimated storage: 221 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -30,7 +30,7 @@ This sequence of operations was run: Pair 0x017a22a4e42f88383dbb327d548e263b53f4f3b91100 (Pair "Ticket" 1) } Storage size: 309 bytes Paid storage size diff: 221 bytes - Consumed gas: 2222.661 + Consumed gas: 2222.481 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.05525 storage fees ........................... +ꜩ0.05525 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Sending tickets to either implicit accounts or originated contracts accep.out b/tezt/tests/expected/tickets.ml/Alpha- Sending tickets to either implicit accounts or originated contracts accep.out index ea01aeebfaa8fbb31462496e18578c2494ce3f9f..bef983ee82704909e34a15f17aee69c3a468bf3c 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Sending tickets to either implicit accounts or originated contracts accep.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Sending tickets to either implicit accounts or originated contracts accep.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) +Estimated gas: 614.291 units (will add 100 for safety) Estimated storage: 415 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -48,7 +48,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 158 bytes Paid storage size diff: 158 bytes - Consumed gas: 614.348 + Consumed gas: 614.258 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0395 storage fees ........................... +ꜩ0.0395 @@ -104,7 +104,7 @@ Contract memorized as tickets_blackhole. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) +Estimated gas: 1858.728 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -131,7 +131,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.998 + Consumed gas: 1758.908 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -153,7 +153,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[CONTRACT_HASH]" 1' Node is bootstrapped. -Estimated gas: 4064.179 units (will add 100 for safety) +Estimated gas: 4064.089 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -180,7 +180,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 2211.485 + Consumed gas: 2211.395 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 diff --git a/tezt/tests/expected/tickets.ml/Alpha- Sending zero ticket from implicit accounts must be rejected.out b/tezt/tests/expected/tickets.ml/Alpha- Sending zero ticket from implicit accounts must be rejected.out index 0f5ff07dc370492bae62529c4b8f756b410f2113..3ecc0a618b198f09e2b6e0f93536e5272a235f79 100644 --- a/tezt/tests/expected/tickets.ml/Alpha- Sending zero ticket from implicit accounts must be rejected.out +++ b/tezt/tests/expected/tickets.ml/Alpha- Sending zero ticket from implicit accounts must be rejected.out @@ -1,7 +1,7 @@ ./octez-client --mode mockup --wait none originate contract tickets_send transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_send_016.tz --init Unit --burn-cap 1 Node is bootstrapped. -Estimated gas: 614.381 units (will add 100 for safety) +Estimated gas: 614.291 units (will add 100 for safety) Estimated storage: 415 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -48,7 +48,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 158 bytes Paid storage size diff: 158 bytes - Consumed gas: 614.348 + Consumed gas: 614.258 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0395 storage fees ........................... +ꜩ0.0395 @@ -60,7 +60,7 @@ Contract memorized as tickets_send. ./octez-client --mode mockup --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg 'Pair "[PUBLIC_KEY_HASH]" 1' Node is bootstrapped. -Estimated gas: 1858.818 units (will add 100 for safety) +Estimated gas: 1858.728 units (will add 100 for safety) Estimated storage: 66 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -87,7 +87,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 158 bytes Paid storage size diff: 66 bytes - Consumed gas: 1758.998 + Consumed gas: 1758.908 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0165 storage fees ........................... +ꜩ0.0165 @@ -112,7 +112,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none originate contract tickets_bag transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/tickets_bag_016.tz --init '{}' --burn-cap 1 Node is bootstrapped. -Estimated gas: 620.652 units (will add 100 for safety) +Estimated gas: 620.562 units (will add 100 for safety) Estimated storage: 451 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -159,7 +159,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 194 bytes Paid storage size diff: 194 bytes - Consumed gas: 620.619 + Consumed gas: 620.529 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.0485 storage fees ........................... +ꜩ0.0485 diff --git a/tezt/tests/expected/tx_sc_rollup.ml/Alpha- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out b/tezt/tests/expected/tx_sc_rollup.ml/Alpha- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out index 6abe524699cbdb4d8414f6be03c332cf3f090554..fdda06983cdc17aee7867b38b184eda4c1513259 100644 --- a/tezt/tests/expected/tx_sc_rollup.ml/Alpha- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out +++ b/tezt/tests/expected/tx_sc_rollup.ml/Alpha- wasm_2_0_0 - tx kernel should run e2e (kernel_e2e).out @@ -8,7 +8,7 @@ ./octez-client --wait none transfer 0 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1000 --arg 'Pair (Pair "[SMART_ROLLUP_HASH]" "[PUBLIC_KEY_HASH]") (Pair 450 "Hello, Ticket!")' Node is bootstrapped. -Estimated gas: 2330.278 units (will add 100 for safety) +Estimated gas: 2330.188 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 '[OPERATION_HASH]' @@ -36,7 +36,7 @@ This sequence of operations was run: Updated storage: Unit Storage size: 205 bytes Paid storage size diff: 67 bytes - Consumed gas: 2223.251 + Consumed gas: 2223.161 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01675 storage fees ........................... +ꜩ0.01675 diff --git a/tezt/tests/expected/views.ml/Alpha- Run views.out b/tezt/tests/expected/views.ml/Alpha- Run views.out index 045cc11dc0779ffef6297303556d1564ee678860..b5d4575994a433ab98dc9ec5b0002c8919022c61 100644 --- a/tezt/tests/expected/views.ml/Alpha- Run views.out +++ b/tezt/tests/expected/views.ml/Alpha- Run views.out @@ -50,7 +50,7 @@ Contract memorized as view_registers_callers. ./octez-client --mode mockup --wait none originate contract view_check_caller transferring 0 from bootstrap1 running michelson_test_scripts/mini_scenarios/view_check_caller.tz --init None --burn-cap 1 Node is bootstrapped. -Estimated gas: 629.030 units (will add 100 for safety) +Estimated gas: 628.400 units (will add 100 for safety) Estimated storage: 465 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -63,7 +63,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000508 Expected counter: 2 - Gas limit: 730 + Gas limit: 729 Storage limit: 485 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000508 @@ -95,7 +95,7 @@ This sequence of operations was run: [CONTRACT_HASH] Storage size: 208 bytes Paid storage size diff: 208 bytes - Consumed gas: 628.996 + Consumed gas: 628.366 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.052 storage fees ........................... +ꜩ0.052 @@ -107,7 +107,7 @@ Contract memorized as view_check_caller. ./octez-client --mode mockup --wait none transfer 1 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 3584.052 units (will add 100 for safety) +Estimated gas: 3583.422 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -120,7 +120,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000665 Expected counter: 3 - Gas limit: 3685 + Gas limit: 3684 Storage limit: 0 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000665 @@ -133,7 +133,7 @@ This sequence of operations was run: This transaction was successfully applied Updated storage: None Storage size: 208 bytes - Consumed gas: 3584.631 + Consumed gas: 3584.001 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ1 [CONTRACT_HASH] ... +ꜩ1 @@ -177,7 +177,7 @@ This sequence of operations was run: ./octez-client --mode mockup --wait none transfer 1 from bootstrap1 to '[CONTRACT_HASH]' --burn-cap 1 --arg '"[CONTRACT_HASH]"' Node is bootstrapped. -Estimated gas: 3587.684 units (will add 100 for safety) +Estimated gas: 3587.054 units (will add 100 for safety) Estimated storage: 27 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -204,7 +204,7 @@ This sequence of operations was run: Updated storage: (Some 0x000002298c03ed7d454a101eb7022bc95f7e5f41ac78) Storage size: 235 bytes Paid storage size diff: 27 bytes - Consumed gas: 3588.263 + Consumed gas: 3587.633 Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00675 storage fees ........................... +ꜩ0.00675