diff --git a/src/proto_alpha/bin_sc_rollup_node/arith_pvm.ml b/src/proto_alpha/bin_sc_rollup_node/arith_pvm.ml index 5c278b168a9b7ae16d9f2f9b8d5b6ad55d57f16d..e763bbd0b49660caa14a4c88db346c50133812c3 100644 --- a/src/proto_alpha/bin_sc_rollup_node/arith_pvm.ml +++ b/src/proto_alpha/bin_sc_rollup_node/arith_pvm.ml @@ -31,11 +31,18 @@ open Alpha_context It is imperative that this is aligned with the protocol's implementation. *) -module Arith_proof_format = Context.Proof (struct - include Sc_rollup.State_hash +module Arith_proof_format = + Context.Proof + (struct + include Sc_rollup.State_hash - let of_context_hash = Sc_rollup.State_hash.context_hash_to_state_hash -end) + let of_context_hash = Sc_rollup.State_hash.context_hash_to_state_hash + end) + (struct + let proof_encoding = + Tezos_context_merkle_proof_encoding.Merkle_proof_encoding.V2.Tree32 + .tree_proof_encoding + end) module Impl : Pvm.S = struct include Sc_rollup.ArithPVM.Make (Arith_proof_format) diff --git a/src/proto_alpha/bin_sc_rollup_node/context.ml b/src/proto_alpha/bin_sc_rollup_node/context.ml index 7f234a63a5b740d222d9e3e74c175623d5f80eda..d1093b01c8b1eb7ccc30406af260fabb87b9e561 100644 --- a/src/proto_alpha/bin_sc_rollup_node/context.ml +++ b/src/proto_alpha/bin_sc_rollup_node/context.ml @@ -97,6 +97,9 @@ module Proof (Hash : sig type t val of_context_hash : Context_hash.t -> t +end) (Proof_encoding : sig + val proof_encoding : + Environment.Context.Proof.tree Environment.Context.Proof.t Data_encoding.t end) = struct module IStoreProof = @@ -122,9 +125,7 @@ struct let hash_tree tree = Hash.of_context_hash (Tree.hash tree) - let proof_encoding = - Tezos_context_merkle_proof_encoding.Merkle_proof_encoding.V1.Tree32 - .tree_proof_encoding + let proof_encoding = Proof_encoding.proof_encoding let proof_before proof = let (`Value hash | `Node hash) = proof.IStoreProof.Proof.before in @@ -176,7 +177,14 @@ module Inbox = struct include Sc_rollup.Inbox include Sc_rollup.Inbox.Make_hashing_scheme (struct - include Proof (Hash) + include + Proof + (Hash) + (struct + let proof_encoding = + Tezos_context_merkle_proof_encoding.Merkle_proof_encoding.V1.Tree32 + .tree_proof_encoding + end) type t = index diff --git a/src/proto_alpha/bin_sc_rollup_node/context.mli b/src/proto_alpha/bin_sc_rollup_node/context.mli index d862a64055b4169c3ee9ae31322f0102e22e608d..ae3cd8e94fd59b0d77a3306ce9d6581272ad2622 100644 --- a/src/proto_alpha/bin_sc_rollup_node/context.mli +++ b/src/proto_alpha/bin_sc_rollup_node/context.mli @@ -85,6 +85,9 @@ module Proof (Hash : sig type t val of_context_hash : Context_hash.t -> t +end) (Proof_encoding : sig + val proof_encoding : + Environment.Context.Proof.tree Environment.Context.Proof.t Data_encoding.t end) : sig module Tree : Tezos_context_sigs.Context.TREE diff --git a/src/proto_alpha/bin_sc_rollup_node/wasm_2_0_0_pvm.ml b/src/proto_alpha/bin_sc_rollup_node/wasm_2_0_0_pvm.ml index e330e6f049821c1be5a5459845dd587b4e72c209..5de2060ce12fc5b45f9775ba4e4bfd11bbdcb9d2 100644 --- a/src/proto_alpha/bin_sc_rollup_node/wasm_2_0_0_pvm.ml +++ b/src/proto_alpha/bin_sc_rollup_node/wasm_2_0_0_pvm.ml @@ -31,11 +31,18 @@ open Alpha_context It is imperative that this is aligned with the protocol's implementation. *) -module Wasm_2_0_0_proof_format = Context.Proof (struct - include Sc_rollup.State_hash +module Wasm_2_0_0_proof_format = + Context.Proof + (struct + include Sc_rollup.State_hash - let of_context_hash = Sc_rollup.State_hash.context_hash_to_state_hash -end) + let of_context_hash = Sc_rollup.State_hash.context_hash_to_state_hash + end) + (struct + let proof_encoding = + Tezos_context_merkle_proof_encoding.Merkle_proof_encoding.V2.Tree32 + .tree_proof_encoding + end) module Impl : Pvm.S = struct include Sc_rollup.Wasm_2_0_0PVM.Make (Wasm_2_0_0_proof_format) diff --git a/src/proto_alpha/lib_client/client_proto_context.ml b/src/proto_alpha/lib_client/client_proto_context.ml index 1ea268a0455126c69656c4ae72677f266355498d..af74d7a2e421cbc66e30f782ebafc4e870da64d2 100644 --- a/src/proto_alpha/lib_client/client_proto_context.ml +++ b/src/proto_alpha/lib_client/client_proto_context.ml @@ -1198,6 +1198,10 @@ let sc_rollup_originate (cctxt : #full) ~chain ~block ?confirmations ?dry_run ~kind ~boot_sector ~parameters_ty ~src_pk ~src_sk ~fee_parameter () = Client_proto_rollups.ScRollup.origination_proof_exn ~boot_sector kind >>= fun origination_proof -> + let (module PVM) = Sc_rollup.wrapped_proof_module origination_proof in + let origination_proof = + Data_encoding.Binary.to_string_exn PVM.proof_encoding PVM.proof + in let op = Annotated_manager_operation.Single_manager (Injection.prepare_manager_operation diff --git a/src/proto_alpha/lib_client/client_proto_rollups.ml b/src/proto_alpha/lib_client/client_proto_rollups.ml index de1e57c8898e04db30193deb6ba29baf9d2e3d2b..c7559036731ebd04e0896f404275611291f0dc1a 100644 --- a/src/proto_alpha/lib_client/client_proto_rollups.ml +++ b/src/proto_alpha/lib_client/client_proto_rollups.ml @@ -91,7 +91,7 @@ module ScRollup = struct let proof_after proof = kinded_hash_to_state_hash proof.Context.Proof.after let proof_encoding = - Tezos_context_merkle_proof_encoding.Merkle_proof_encoding.V1.Tree32 + Tezos_context_merkle_proof_encoding.Merkle_proof_encoding.V2.Tree32 .tree_proof_encoding end diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index bf43a1cd39bd0ba973abf25c3d4b4d41dd0b46d8..83d837adb7c79108bb4f6cf0a0ab0d1b8b672ed4 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -4162,7 +4162,7 @@ and _ manager_operation = | Sc_rollup_originate : { kind : Sc_rollup.Kind.t; boot_sector : string; - origination_proof : Sc_rollup.wrapped_proof; + origination_proof : string; parameters_ty : Script.lazy_expr; } -> Kind.sc_rollup_originate manager_operation diff --git a/src/proto_alpha/lib_protocol/operation_repr.ml b/src/proto_alpha/lib_protocol/operation_repr.ml index 9a33dffa69ab06ab4468eae9e35a116b54d674f4..47f146024877f244f86de862530ef0beb4bfe2e4 100644 --- a/src/proto_alpha/lib_protocol/operation_repr.ml +++ b/src/proto_alpha/lib_protocol/operation_repr.ml @@ -415,7 +415,7 @@ and _ manager_operation = | Sc_rollup_originate : { kind : Sc_rollups.Kind.t; boot_sector : string; - origination_proof : Sc_rollups.wrapped_proof; + origination_proof : string; parameters_ty : Script_repr.lazy_expr; } -> Kind.sc_rollup_originate manager_operation @@ -1051,6 +1051,9 @@ module Encoding = struct {public_parameters; circuits_info; init_state; nb_ops}); } + let string_to_bytes_encoding = + Data_encoding.conv Bytes.of_string Bytes.to_string Data_encoding.bytes + let sc_rollup_originate_case = MCase { @@ -1059,8 +1062,8 @@ module Encoding = struct encoding = obj4 (req "kind" Sc_rollups.Kind.encoding) - (req "boot_sector" Data_encoding.string) - (req "origination_proof" Sc_rollups.wrapped_proof_encoding) + (req "boot_sector" string_to_bytes_encoding) + (req "origination_proof" string_to_bytes_encoding) (req "parameters_ty" Script_repr.lazy_expr_encoding); select = (function diff --git a/src/proto_alpha/lib_protocol/operation_repr.mli b/src/proto_alpha/lib_protocol/operation_repr.mli index 47fcf49c13136b4d2e25502697dc8e64e753c3a9..1e20a748b11e94283811be7c03bc9d16fbb0adf5 100644 --- a/src/proto_alpha/lib_protocol/operation_repr.mli +++ b/src/proto_alpha/lib_protocol/operation_repr.mli @@ -484,7 +484,7 @@ and _ manager_operation = | Sc_rollup_originate : { kind : Sc_rollups.Kind.t; boot_sector : string; - origination_proof : Sc_rollups.wrapped_proof; + origination_proof : string; parameters_ty : Script_repr.lazy_expr; } -> Kind.sc_rollup_originate manager_operation diff --git a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml index 94a9b9e343d611999994db759ad587a1fafccc94..3e431fe18dbe331ee158def7e0382c0599d0b80b 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml @@ -1236,5 +1236,5 @@ module Protocol_implementation = Make (struct let proof_after proof = kinded_hash_to_state_hash proof.Context.Proof.after - let proof_encoding = Context.Proof_encoding.V1.Tree32.tree_proof_encoding + let proof_encoding = Context.Proof_encoding.V2.Tree32.tree_proof_encoding end) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_operations.ml b/src/proto_alpha/lib_protocol/sc_rollup_operations.ml index 36714f6806f994a712f280b0b31e1192ac407bd0..fb2594b3d70a12d21fc2bb49955b2ec88b1e1ef7 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_operations.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_operations.ml @@ -86,6 +86,57 @@ type origination_result = { genesis_commitment_hash : Sc_rollup.Commitment.Hash.t; } +let origination_proof_of_string origination_proof kind = + let open Lwt_tzresult_syntax in + match kind with + | Sc_rollup.Kind.Example_arith -> + let* proof = + match + Data_encoding.Binary.of_string_opt + Sc_rollup.ArithPVM.Protocol_implementation.proof_encoding + origination_proof + with + | Some x -> return x + | None -> + fail + (Sc_rollup_proof_repr.Sc_rollup_proof_check + "invalid encoding for Arith origination proof") + in + + let (module PVM : Sc_rollup.PVM_with_proof + with type proof = Sc_rollup.ArithPVM.Protocol_implementation.proof) + = + (module struct + include Sc_rollup.ArithPVM.Protocol_implementation + + let proof = proof + end) + in + return @@ Sc_rollup.Arith_pvm_with_proof (module PVM) + | Sc_rollup.Kind.Wasm_2_0_0 -> + let* proof = + match + Data_encoding.Binary.of_string_opt + Sc_rollup.Wasm_2_0_0PVM.Protocol_implementation.proof_encoding + origination_proof + with + | Some x -> return x + | None -> + fail + (Sc_rollup_proof_repr.Sc_rollup_proof_check + "invalid encoding for Wasm_2_0_0 origination proof") + in + let (module PVM : Sc_rollup.PVM_with_proof + with type proof = + Sc_rollup.Wasm_2_0_0PVM.Protocol_implementation.proof) = + (module struct + include Sc_rollup.Wasm_2_0_0PVM.Protocol_implementation + + let proof = proof + end) + in + return @@ Sc_rollup.Wasm_2_0_0_pvm_with_proof (module PVM) + type 'ret continuation = unit -> 'ret tzresult (* Only a subset of types are supported for rollups. @@ -207,6 +258,8 @@ let originate ctxt ~kind ~boot_sector ~origination_proof ~parameters_ty = in validate_untyped_parameters_ty ctxt parameters_ty in + + let* origination_proof = origination_proof_of_string origination_proof kind in let* genesis_hash = check_origination_proof kind boot_sector origination_proof in @@ -456,6 +509,8 @@ let execute_outbox_message ctxt ~validate_and_decode_output_proof rollup module Internal_for_tests = struct let execute_outbox_message = execute_outbox_message + + let origination_proof_of_string = origination_proof_of_string end let execute_outbox_message ctxt = diff --git a/src/proto_alpha/lib_protocol/sc_rollup_operations.mli b/src/proto_alpha/lib_protocol/sc_rollup_operations.mli index 319210109fda864d87a7eb841f43db02b4958465..fdc02169b3f3a734e512e3459b8d2264daf4afc3 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_operations.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_operations.mli @@ -67,7 +67,7 @@ val originate : context -> kind:Sc_rollup.Kind.t -> boot_sector:string -> - origination_proof:Sc_rollup.wrapped_proof -> + origination_proof:string -> parameters_ty:Script_repr.lazy_expr -> (origination_result * context) tzresult Lwt.t @@ -99,4 +99,7 @@ module Internal_for_tests : sig source:public_key_hash -> output_proof:string -> (execute_outbox_message_result * context) tzresult Lwt.t + + val origination_proof_of_string : + string -> Sc_rollup.Kind.t -> Sc_rollup.wrapped_proof tzresult Lwt.t end diff --git a/src/proto_alpha/lib_protocol/sc_rollup_wasm.ml b/src/proto_alpha/lib_protocol/sc_rollup_wasm.ml index 8fa410b9d742ba1cd6edcaf48bee97616b5a493d..06c99ba88cd83034aa980cce8b22c548eb800838 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_wasm.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_wasm.ml @@ -474,6 +474,6 @@ module V2_0_0 = struct let proof_after proof = kinded_hash_to_state_hash proof.Context.Proof.after - let proof_encoding = Context.Proof_encoding.V1.Tree32.tree_proof_encoding + let proof_encoding = Context.Proof_encoding.V2.Tree32.tree_proof_encoding end) end diff --git a/src/proto_alpha/lib_protocol/sc_rollups.ml b/src/proto_alpha/lib_protocol/sc_rollups.ml index dde3e046d15dd5bec5d1cc47179968c4f77f05fe..4b9c631b0a397e952088efc6ea8c6edc7e873785 100644 --- a/src/proto_alpha/lib_protocol/sc_rollups.ml +++ b/src/proto_alpha/lib_protocol/sc_rollups.ml @@ -129,6 +129,9 @@ let wrapped_proof_kind_exn : wrapped_proof -> Kind.t = function | Arith_pvm_with_proof _ -> Kind.Example_arith | Wasm_2_0_0_pvm_with_proof _ -> Kind.Wasm_2_0_0 +(* TODO: #3704 + Change to an encoding that produces bytes +*) let wrapped_proof_encoding = let open Data_encoding in let encoding = diff --git a/src/proto_alpha/lib_protocol/test/helpers/op.ml b/src/proto_alpha/lib_protocol/test/helpers/op.ml index ed1b4bca3cf7f848150b45c86688c1b1bf4f9278..25609b41682f5a7e33ddb50e95eb01c9e929a9e5 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/op.ml +++ b/src/proto_alpha/lib_protocol/test/helpers/op.ml @@ -811,23 +811,33 @@ let originated_sc_rollup op = let sc_rollup_origination ?force_reveal ?counter ?fee ?gas_limit ?storage_limit ?origination_proof ctxt (src : Contract.t) kind ~boot_sector ~parameters_ty = - (match origination_proof with - | None -> Sc_rollup_helpers.origination_proof ~boot_sector kind - | Some origination_proof -> Lwt.return origination_proof) - >>= fun origination_proof -> - manager_operation - ?force_reveal - ?counter - ?fee - ?gas_limit - ?storage_limit - ~source:src - ctxt - (Sc_rollup_originate {kind; boot_sector; origination_proof; parameters_ty}) - >>=? fun to_sign_op -> - Context.Contract.manager ctxt src >|=? fun account -> + let open Lwt_result_syntax in + let* origination_proof = + Sc_rollup_helpers.wrap_origination_proof + ~boot_sector + ~kind + origination_proof + in + + let (module PVM) = Sc_rollup.wrapped_proof_module origination_proof in + let origination_proof = + Data_encoding.Binary.to_string_exn PVM.proof_encoding PVM.proof + in + let* to_sign_op = + manager_operation + ?force_reveal + ?counter + ?fee + ?gas_limit + ?storage_limit + ~source:src + ctxt + (Sc_rollup_originate {kind; boot_sector; origination_proof; parameters_ty}) + in + let* account = Context.Contract.manager ctxt src in let op = sign account.sk ctxt to_sign_op in - originated_sc_rollup op |> fun addr -> (op, addr) + let t = originated_sc_rollup op |> fun addr -> (op, addr) in + return t let sc_rollup_publish ?force_reveal ?counter ?fee ?gas_limit ?storage_limit ctxt (src : Contract.t) rollup commitment = diff --git a/src/proto_alpha/lib_protocol/test/helpers/op.mli b/src/proto_alpha/lib_protocol/test/helpers/op.mli index 5cb7c6159d6338de6eeff6e6b2764f06d630d658..07c47a75307e06e774784a00ff0f0ec7a32b1257 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/op.mli +++ b/src/proto_alpha/lib_protocol/test/helpers/op.mli @@ -577,7 +577,7 @@ val sc_rollup_origination : ?fee:Tez.t -> ?gas_limit:gas_limit -> ?storage_limit:counter -> - ?origination_proof:Sc_rollup.wrapped_proof -> + ?origination_proof:string -> Context.t -> Contract.t -> Sc_rollup.Kind.t -> diff --git a/src/proto_alpha/lib_protocol/test/helpers/operation_generator.ml b/src/proto_alpha/lib_protocol/test/helpers/operation_generator.ml index 723a30400d2b028ec4d716c1bd635adfaa7c7eed..da3b7a29a3e3521887621543e4717720a26884c2 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/operation_generator.ml +++ b/src/proto_alpha/lib_protocol/test/helpers/operation_generator.ml @@ -669,6 +669,10 @@ let generate_sc_rollup_originate random_state : let origination_proof = Lwt_main.run (Sc_rollup_helpers.origination_proof ~boot_sector kind) in + let (module PVM) = Sc_rollup.wrapped_proof_module origination_proof in + let origination_proof = + Data_encoding.Binary.to_string_exn PVM.proof_encoding PVM.proof + in Sc_rollup_originate {kind; boot_sector; origination_proof; parameters_ty} in generate_manager random_state gen_sc_originate diff --git a/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml b/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml index 58050e5950ff417d6b0dca61747ed97a1925dd62..a48784ae11dffc22317b84088bc088ee16200450 100644 --- a/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml +++ b/src/proto_alpha/lib_protocol/test/helpers/sc_rollup_helpers.ml @@ -78,7 +78,7 @@ module In_memory_context = struct let proof_after proof = kinded_hash_to_state_hash proof.Context.Proof.after let proof_encoding = - Tezos_context_merkle_proof_encoding.Merkle_proof_encoding.V1.Tree32 + Tezos_context_merkle_proof_encoding.Merkle_proof_encoding.V2.Tree32 .tree_proof_encoding end @@ -128,6 +128,19 @@ let origination_proof ~boot_sector = function let proof = proof end)) +let wrap_origination_proof ~kind ~boot_sector proof_string_opt : + Sc_rollup.wrapped_proof tzresult Lwt.t = + let open Lwt_result_syntax in + match proof_string_opt with + | None -> + let*! origination_proof = origination_proof ~boot_sector kind in + return origination_proof + | Some proof_string -> + Lwt.map Environment.wrap_tzresult + @@ Sc_rollup_operations.Internal_for_tests.origination_proof_of_string + proof_string + kind + let genesis_commitment ~boot_sector ~origination_level = function | Sc_rollup.Kind.Example_arith -> let open Lwt_syntax in diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml index b5fa1b05bf10121d911c88930cf274b619e9bc03..61cb20be242cd4dc64f03e21eccbb23653fdcfcb 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml @@ -764,6 +764,10 @@ let test_originating_with_invalid_boot_sector_proof () = ~boot_sector:"a boot sector" Sc_rollup.Kind.Example_arith in + let (module PVM) = Sc_rollup.wrapped_proof_module origination_proof in + let origination_proof = + Data_encoding.Binary.to_string_exn PVM.proof_encoding PVM.proof + in let*! res = init_and_originate ~boot_sector:"another boot sector" @@ -785,6 +789,10 @@ let test_originating_with_invalid_kind_proof () = ~boot_sector:"a boot sector" Sc_rollup.Kind.Wasm_2_0_0 in + let (module PVM) = Sc_rollup.wrapped_proof_module origination_proof in + let origination_proof = + Data_encoding.Binary.to_string_exn PVM.proof_encoding PVM.proof + in let*! res = init_and_originate ~boot_sector:"a boot sector" @@ -800,6 +808,23 @@ let test_originating_with_invalid_kind_proof () = return_unit | _ -> failwith "It should have failed with [Sc_rollup_proof_check]" +let test_originating_with_random_proof () = + let origination_proof = "bad proof" in + let*! res = + init_and_originate + ~boot_sector:"some boot sector" + ~origination_proof + Context.T1 + "unit" + in + match res with + | Error + (Environment.Ecoproto_error (Sc_rollup.Proof.Sc_rollup_proof_check _ as e) + :: _) -> + Assert.test_error_encodings e ; + return_unit + | _ -> failwith "It should have failed with [Sc_rollup_proof_check]" + let assert_equal_expr ~loc e1 e2 = let s1 = Format.asprintf "%a" Michelson_v1_printer.print_expr e1 in let s2 = Format.asprintf "%a" Michelson_v1_printer.print_expr e2 in @@ -1645,6 +1670,10 @@ let tests = "originating with invalid kind proof" `Quick test_originating_with_invalid_kind_proof; + Tztest.tztest + "originating with random proof" + `Quick + test_originating_with_random_proof; Tztest.tztest "originating with valid type" `Quick diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out index c5c3e51c3f9c22d4952087134299326a67aea788..2aa51ff6d942e830f39c6896fddfccdbfb696a83 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: unit diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out index fe731f416fbcd329117fd91b8206c6b59c82bde5..eb286bde359c6050b608fc20163b32df91cd8488 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: unit diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a late rollup should catch up (late).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a late rollup should catch up (late).out index 48c47ec00f8b84cf188ba6f5b0a8463a799b363e..05e99990733770d424edda0d88415a3d1a9e6b77 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a late rollup should catch up (late).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - a late rollup should catch up (late).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - consecutive commitments.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - consecutive commitments.out index 0749b1d6c9d9dabcad939b8d8bf4e6d368361a42..0f08c3d7815fc71c80da72d1df6656680c3ec7d1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - consecutive commitments.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get genesis info of a sc rollup.out index 48c47ec00f8b84cf188ba6f5b0a8463a799b363e..05e99990733770d424edda0d88415a3d1a9e6b77 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get genesis info of a sc rollup.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get last cemented commitment hash and inbox level of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get last cemented commitment hash and inbox level of a sc rollup.out index 48c47ec00f8b84cf188ba6f5b0a8463a799b363e..05e99990733770d424edda0d88415a3d1a9e6b77 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get last cemented commitment hash and inbox level of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - get last cemented commitment hash and inbox level of a sc rollup.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (basic).out index d410015437130cc19974f930ce3d82eb6cddf75b..474db498c8120d13f55241463d7df538119a2de2 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (basic).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (disconnects).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (disconnects).out index a1419f5e235a8659fbf9abbaa0ec7b4dd9796d4a..efaf8e54484e00f12e35d01d74b78ab2cf4d7760 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (disconnects).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (disconnects).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (handles_chain_reorg).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (handles_chain_reorg).out index db2638a685462500f6ed55228bfe2d579b00a741..65d5c90695957a63661c7afed4acaaf1220642d5 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (handles_chain_reorg).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - maintenance of inbox in the rollup node (handles_chain_reorg).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with internal messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with internal messages.out index 384a71b0e7b84f96a2a595eb55b211d74e403cf0..52f7cf303e37e814d6b31b2096b3d517ec903a19 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with internal messages.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with messages.out index 5cff1875abc91b3718e34a14a07230ead5cd81a6..9bdd77a2066977ce844f721ee345b8dbc9d34c0f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node advances PVM state with messages.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node boots into the initial state.out index fd323554af05bb7f45ef83f90beb0cc8b772640b..d3da8030325cbe01bd516ea5c553e917b883be9b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - node boots into the initial state.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - origination of a SCORU executes without error.out index 48c47ec00f8b84cf188ba6f5b0a8463a799b363e..05e99990733770d424edda0d88415a3d1a9e6b77 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - origination of a SCORU executes without error.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - check inbox size.out index 63024bcc14320f0d42852226e94f852509093913..2894cb051d10a50fd095dc30512a5d045518a823 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - check inbox size.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - current messages hash.out index aaa518af653d601465c708376d237cb42880a27f..ea7adcc606794f5b0f185b3af20c351e713ba7ab 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - current messages hash.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - pushing messages in the inbox - current messages hash.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof).out index cd5af7f4a87f90b6b27f7c1e96a034802b1b16d8..1af585fc9865a8ddf085ac99ef443053e5af35f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_at_genesis).out index cd5af7f4a87f90b6b27f7c1e96a034802b1b16d8..1af585fc9865a8ddf085ac99ef443053e5af35f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_at_genesis).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_at_genesis).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_many_empty_level.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_many_empty_level.out index 28860ef993ad2185b8fb18ad5c5593804aba00d3..22457ac6cb425ec4d5e15539944846aca4d4ade7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_many_empty_level.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_many_empty_level.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_one_empty_level).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_one_empty_level).out index 6ec2427b9bc6515ce1d67c50ab8f60bc420c96ae..4c2364539cb2589c70e8850463220e4b1719ff6a 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_one_empty_level).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_one_empty_level).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_0).out index cd5af7f4a87f90b6b27f7c1e96a034802b1b16d8..1af585fc9865a8ddf085ac99ef443053e5af35f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_0).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_1).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_1).out index cd5af7f4a87f90b6b27f7c1e96a034802b1b16d8..1af585fc9865a8ddf085ac99ef443053e5af35f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_1).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_1).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_2).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_2).out index fe782aa7df96b95bce359d0d2551bbf8e83facf0..cd155f4d0165a3e38340c08f5fe5eabefe330b0d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_2).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_2).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_3).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_3).out index 170546d1bb15b38530734b7f59d46528a6d77a8b..6581d2be177a7055ebcfe0cb27307239b76331ec 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_3).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_3).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_at_genesis).out index cd5af7f4a87f90b6b27f7c1e96a034802b1b16d8..1af585fc9865a8ddf085ac99ef443053e5af35f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_at_genesis).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (pvm_proof_at_genesis).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (timeout).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (timeout).out index cd5af7f4a87f90b6b27f7c1e96a034802b1b16d8..1af585fc9865a8ddf085ac99ef443053e5af35f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (timeout).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (timeout).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (batcher_does_not_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (batcher_does_not_p.out index a4e56b1e25c9caeea86682cda9d2538bbc9a2869..daacead65eeb2dac2ecdd4f3b89723aa68703005 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (batcher_does_not_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (batcher_does_not_p.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (commitment_is_stor.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (commitment_is_stor.out index d13a71bda1f394770f9250935b15e00874616847..7aba047ea63a0e49696fa3502b1b0d11fd07d9ef 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (commitment_is_stor.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (commitment_is_stor.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (first_published_at.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (first_published_at.out index bfa66f5dd7615cf1a99838ccf8f99966beb4e745..afedda915322ac1895a783f235ad61f774d5804e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (first_published_at.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (first_published_at.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (handles_chain_reor.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (handles_chain_reor.out index df0f92aff0b7724dc1d1df41a4c4ddd85d43fc16..3b379b03e39c47854a7b4d27f2e0cca735ba51a8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (handles_chain_reor.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (handles_chain_reor.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (maintenance_publis.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (maintenance_publis.out index 758c33b19c0023b47a8166d5fe98d686ae878724..79056f808e4774e641875221e29e4cddf56ed7ee 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (maintenance_publis.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (maintenance_publis.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (messages_reset).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (messages_reset).out index 8662fb00c530c199c089cf866b16fc8a2ec412cf..b6785b353bb01211757c833ac6ab7678f34e0689 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (messages_reset).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (messages_reset).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (no_commitment_publ.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (no_commitment_publ.out index 388065fd3fb2c9160a88ffeb822f4b338d54c231..637e47e8d414fe5c6b3300b0bf21c869adb74f5c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (no_commitment_publ.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (no_commitment_publ.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (node_use_proto_par.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (node_use_proto_par.out index 9b9f1054c3092d1eb467158171425901e4244484..00d2bc82b0013a2590023259484374d9f6487dc9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (node_use_proto_par.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (node_use_proto_par.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (non_final_level).out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (non_final_level).out index 3af81f6f50925b59828fd7871972a9f7369aa5fe..2a5e11eccab7ed6534ba9f65a640ff339c81c270 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (non_final_level).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (non_final_level).out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (observer_does_not_.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (observer_does_not_.out index a4e56b1e25c9caeea86682cda9d2538bbc9a2869..daacead65eeb2dac2ecdd4f3b89723aa68703005 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (observer_does_not_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (observer_does_not_.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (operator_publishes.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (operator_publishes.out index 758c33b19c0023b47a8166d5fe98d686ae878724..79056f808e4774e641875221e29e4cddf56ed7ee 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (operator_publishes.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (operator_publishes.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (robust_to_failures.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (robust_to_failures.out index cae1ca05c28377b522cf3cc06fe7fdd8b2f5dcd3..2cb4de78192acb837d99b68d0974f84c195fa2fe 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (robust_to_failures.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - rollup node - correct handling of commitments (robust_to_failures.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- commitments- publish- and try to cement not on top of LCC or disputed.out b/tezt/tests/expected/sc_rollup.ml/Alpha- commitments- publish- and try to cement not on top of LCC or disputed.out index 22da5b40027f736847c1e0a948e55964112535d5..44289a0855d2eef0da5822ac1fa41cb1d12fd5f6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- commitments- publish- and try to cement not on top of LCC or disputed.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- commitments- publish- and try to cement not on top of LCC or disputed.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: unit diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out index abe06cc969c369c1c0f9f8ea6928a676e649df38..b0ed8adb196e6ccd472051c483e7dc8c7d163ac3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure arith boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure arith boot sector is used.out index 38c46ab45d52ecf7a9154baf57980abee7fe5542..f9b81e5f660e294b8a3934cad0750758cdc6f77c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure arith boot sector is used.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure arith boot sector is used.out @@ -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.000686 + Fee to the baker: ꜩ0.000684 Expected counter: 1 Gas limit: 3211 Storage limit: 6687 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000684 + payload fees(the block proposer) ....... +ꜩ0.000684 Smart contract rollup origination: Kind: arith Parameter type: string @@ -92,13 +92,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.000676 + Fee to the baker: ꜩ0.000674 Expected counter: 2 Gas limit: 3211 Storage limit: 6677 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000676 - payload fees(the block proposer) ....... +ꜩ0.000676 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out index abe06cc969c369c1c0f9f8ea6928a676e649df38..b0ed8adb196e6ccd472051c483e7dc8c7d163ac3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out index 8226cddaef574d87f6f5aee70106ec54f23f2816..97c245f18cb3b33d07c2c7f5ab2a4d3fb5d6a1d0 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -46,13 +46,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 2 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -80,13 +80,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 3 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -114,13 +114,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 4 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -148,13 +148,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 5 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -182,13 +182,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 6 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -216,13 +216,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 7 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -250,13 +250,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 8 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -284,13 +284,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 9 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string @@ -318,13 +318,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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 10 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- originate arith with boot sector.out b/tezt/tests/expected/sc_rollup.ml/Alpha- originate arith with boot sector.out index bdec1f4af5968f8f47b534588c604a4f9a15bd60..6b8012103f732f9fc53a404025d30a0e9bdd3ac4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- originate arith with boot sector.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- originate arith with boot sector.out @@ -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.000686 + Fee to the baker: ꜩ0.000684 Expected counter: 1 Gas limit: 3211 Storage limit: 6687 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000684 + payload fees(the block proposer) ....... +ꜩ0.000684 Smart contract rollup origination: Kind: arith Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- refutation game timeout.out b/tezt/tests/expected/sc_rollup.ml/Alpha- refutation game timeout.out index 8980bee98109d2fe807f7f638de09c3b2c475527..959dca4eb22db9b6115edb12b09a7ef8b556a60f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- refutation game timeout.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- refutation game timeout.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: unit diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- refutation- check the punishment and reward.out b/tezt/tests/expected/sc_rollup.ml/Alpha- refutation- check the punishment and reward.out index 3028426833d83f05da413e24e386189f587789f3..1e02df43341f30f7f46f4695ef22bad17162e36d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- refutation- check the punishment and reward.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- refutation- check the punishment and reward.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: unit diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- valid dispute dissection.out b/tezt/tests/expected/sc_rollup.ml/Alpha- valid dispute dissection.out index be4cca21b4164b2c155d2527964c4e8df69c793b..5e3ab5f0ccc04c1a3a16ba3c28dcb375618161b3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- valid dispute dissection.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- valid dispute dissection.out @@ -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.000674 + Fee to the baker: ꜩ0.000672 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup origination: Kind: arith Parameter type: unit diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a late rollup should catch up (late).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a late rollup should catch up (late).out index abe06cc969c369c1c0f9f8ea6928a676e649df38..b0ed8adb196e6ccd472051c483e7dc8c7d163ac3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a late rollup should catch up (late).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - a late rollup should catch up (late).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - consecutive commitments.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - consecutive commitments.out index e86fea9ebab2f03fc52aba99366b915b2b592133..3449d98f564865f5f27718dada3ee5084536d4e4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - consecutive commitments.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get genesis info of a sc rollup.out index abe06cc969c369c1c0f9f8ea6928a676e649df38..b0ed8adb196e6ccd472051c483e7dc8c7d163ac3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get genesis info of a sc rollup.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get last cemented commitment hash and inbox level of a sc ro.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get last cemented commitment hash and inbox level of a sc ro.out index abe06cc969c369c1c0f9f8ea6928a676e649df38..b0ed8adb196e6ccd472051c483e7dc8c7d163ac3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get last cemented commitment hash and inbox level of a sc ro.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - get last cemented commitment hash and inbox level of a sc ro.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (basic).out index 2c75fea37fa31f8f5989323e906341ebe934b8b2..8f1901b40e787116324171245edf2261c2c02854 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (basic).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects).out index 72e8e880bc5197d9a374338458a837896699cba8..06d089e04531b9eed1a0721f3209d307db74e65d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (disconnects).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg.out index 192a62e0f3725430b86a637b89a5f16c776a01c3..9568478c23c51dfbed0cfc85ee0ce479d1024feb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - maintenance of inbox in the rollup node (handles_chain_reorg.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with internal messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with internal messages.out index 2e63b4935ea0f8846f6c27ccaf277a0ad4deaa1e..3e6a9a7a5fba79771858f7c2632f989eba1ef5c7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with internal messages.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with messages.out index d3fbbd23c6a3cb1068bedf6f4b7984ab09995014..07c7f301fdf44c8f691aa542279b84d044b1e2de 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node advances PVM state with messages.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node boots into the initial state.out index a260cd025d58e2e778c13f0347031e61e77bf30b..7fb77cbcf23c9724de6cbc755cdd2e4ed868c152 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - node boots into the initial state.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - origination of a SCORU executes without error.out index abe06cc969c369c1c0f9f8ea6928a676e649df38..b0ed8adb196e6ccd472051c483e7dc8c7d163ac3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - origination of a SCORU executes without error.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - check inbox size.out index 7822411afea92f3a826f1232c2b3dab566b12525..2e0e666f89e5dcf2758abc001d3cb60eb5308047 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - check inbox size.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - current messages hash.out index f496b6a3dacf03b0b3df7d5f4690038fb628a689..045568132fde6af84de22fdbe93c84deb86a875d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - current messages hash.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - pushing messages in the inbox - current messages hash.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof).out index afacb6ef4cc67324d640fab6863e6629d0194f88..65daaf0b85c09566bb4fddd7223354f4ed7b5beb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_at_genesis).out index afacb6ef4cc67324d640fab6863e6629d0194f88..65daaf0b85c09566bb4fddd7223354f4ed7b5beb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_at_genesis).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_at_genesis).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_many_empty_.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_many_empty_.out index 8eaa3666886208e568b17627d50601396a242b57..c2afa2cde06ff741bfc5d4076d9f0a7c930c5046 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_many_empty_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_many_empty_.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_one_empty_l.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_one_empty_l.out index dd5e13a3dcf81d245e6fbbe40d93b379e80b9e3b..98d6355379be1eed8ebae87e0dcd62af2e1c63e4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_one_empty_l.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_one_empty_l.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_0).out index afacb6ef4cc67324d640fab6863e6629d0194f88..65daaf0b85c09566bb4fddd7223354f4ed7b5beb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_0).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_1).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_1).out index afacb6ef4cc67324d640fab6863e6629d0194f88..65daaf0b85c09566bb4fddd7223354f4ed7b5beb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_1).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_1).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_2).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_2).out index 6154272044170e0a1a6d435b98e78901f4cb4947..e340b450478a1ef5f69f566cebe7a8a9c8ee5477 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_2).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_2).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_3).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_3).out index 7068071a7227baea2cc5c839e126e531ebe4c450..3ea0eb2beae8004905f8f418ae174db238df410d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_3).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_3).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_at_genesis).out index afacb6ef4cc67324d640fab6863e6629d0194f88..65daaf0b85c09566bb4fddd7223354f4ed7b5beb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_at_genesis).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (pvm_proof_at_genesis).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (timeout).out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (timeout).out index afacb6ef4cc67324d640fab6863e6629d0194f88..65daaf0b85c09566bb4fddd7223354f4ed7b5beb 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (timeout).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (timeout).out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_.out index 7252ca9fc6bd9f9b59ed6bea389757441a7b8be2..24847a66bdd6e5401ed9d55faced2113c57b730b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (batcher_does_.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is.out index 7aeeb6cf94950a9c3db263947f199b110235b3f0..589740d0b0adfdc5d93b11e1389494f43c1d1377 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (commitment_is.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (first_publish.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (first_publish.out index 74d64d3faa9c62df9314a59d78033ba4b2a6205a..513e1630865e8bac83b563a51fa267cfa385edd8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (first_publish.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (first_publish.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain.out index 07260a400e62fe709c0ca448b36876b7d33e05d4..ba72a5b5c01a80f47259d73fcfeae6d1f9cada24 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (handles_chain.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_p.out index 07f157d90ad415d672ab9dfd5bcd9dac94d2a3d3..a70ab1d8c0183be7ae57c021a41eb1d8b42e6bf9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (maintenance_p.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (messages_rese.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (messages_rese.out index 08c3cc298c7810fb222a8695cabdc317c1a1aa53..4947102e9e1d89a22f87bb1cea837cb6c983725b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (messages_rese.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (messages_rese.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment.out index 1f795fac08fb33ec0b44a6894a5c039d513f6b4a..9cf587023b3720e14e96ed2940576fa61aca2310 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (no_commitment.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (node_use_prot.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (node_use_prot.out index 3545102b26f497dbd6e99bd812d69ff3046108fe..0f326966e88cf995f240c723c6cddf24022d822b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (node_use_prot.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (node_use_prot.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (non_final_lev.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (non_final_lev.out index c4c6d40fa49ae4eff5aca0b770ca6a57ff8691f4..03a4bd70617894053376f56c57069ffd7666cfea 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (non_final_lev.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (non_final_lev.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (observer_does.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (observer_does.out index 7252ca9fc6bd9f9b59ed6bea389757441a7b8be2..24847a66bdd6e5401ed9d55faced2113c57b730b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (observer_does.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (observer_does.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (operator_publ.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (operator_publ.out index 07f157d90ad415d672ab9dfd5bcd9dac94d2a3d3..a70ab1d8c0183be7ae57c021a41eb1d8b42e6bf9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (operator_publ.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (operator_publ.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_fai.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_fai.out index acaaab288875133ace607beaeae6541968963a66..699ed24df7982a01ac75ca68314f073d2a872d7a 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_fai.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - rollup node - correct handling of commitments (robust_to_fai.out @@ -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.004717 + Fee to the baker: ꜩ0.004715 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004717 - payload fees(the block proposer) ....... +ꜩ0.004717 + [PUBLIC_KEY_HASH] ... -ꜩ0.004715 + payload fees(the block proposer) ....... +ꜩ0.004715 Smart contract rollup origination: Kind: wasm_2_0_0 Parameter type: string