diff --git a/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml b/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml index 82631b07af5a4fc9c4726eeded4f96108178b948..daca31fbfd1a32a281719949148314ecbc6e1433 100644 --- a/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml +++ b/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml @@ -123,7 +123,7 @@ module Make (Interpreter : Interpreter.S) : @@ (Sc_rollup.Proof.produce (module P) game.level >|= Environment.wrap_tzresult) in - let+ check = + let+ check, _ = Sc_rollup.Proof.valid history_proof game.level ~pvm_name:game.pvm_name r >|= Environment.wrap_tzresult in diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index fd1de02d68aa4a8dbb3405ece18d93cfcb64b228..2d05931eb1db4156b72d8048060e7a7d59f1f6b9 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3167,12 +3167,10 @@ module Sc_rollup : sig val proof_start_state : proof -> hash - val proof_stop_state : proof -> hash option + val proof_stop_state : input option -> proof -> hash option val proof_input_requested : proof -> input_request - val proof_input_given : proof -> input option - val state_hash : state -> hash Lwt.t val initial_state : context -> state Lwt.t @@ -3185,7 +3183,7 @@ module Sc_rollup : sig val eval : state -> state Lwt.t - val verify_proof : proof -> bool Lwt.t + val verify_proof : input option -> proof -> bool Lwt.t val produce_proof : context -> input option -> state -> proof tzresult Lwt.t @@ -3262,11 +3260,7 @@ module Sc_rollup : sig (proof * 'a) option Lwt.t end - type 'a proof = { - tree_proof : 'a; - given : input option; - requested : input_request; - } + type 'a proof = {tree_proof : 'a; requested : input_request} module Make (C : P) : sig include @@ -3316,11 +3310,7 @@ module Sc_rollup : sig (proof * 'a) option Lwt.t end - type 'a proof = { - tree_proof : 'a; - given : input option; - requested : input_request; - } + type 'a proof = {tree_proof : 'a; requested : input_request} module Make (C : P) : sig include @@ -3450,7 +3440,7 @@ module Sc_rollup : sig Raw_level.t -> pvm_name:string -> t -> - bool tzresult Lwt.t + (bool * Sc_rollup_PVM_sem.input option) tzresult Lwt.t val produce : (module PVM_with_context_and_state) -> Raw_level.t -> t tzresult Lwt.t diff --git a/src/proto_alpha/lib_protocol/sc_rollup_PVM_sem.ml b/src/proto_alpha/lib_protocol/sc_rollup_PVM_sem.ml index 982f2b7ed54e4ec57ab145f51a35df85354cc729..1f86788cece197e49261424e4b1ae231f37f6848 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_PVM_sem.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_PVM_sem.ml @@ -156,12 +156,10 @@ module type S = sig val proof_start_state : proof -> hash - val proof_stop_state : proof -> hash option + val proof_stop_state : input option -> proof -> hash option val proof_input_requested : proof -> input_request - val proof_input_given : proof -> input option - val state_hash : state -> hash Lwt.t val initial_state : context -> state Lwt.t @@ -174,7 +172,7 @@ module type S = sig val eval : state -> state Lwt.t - val verify_proof : proof -> bool Lwt.t + val verify_proof : input option -> proof -> bool Lwt.t val produce_proof : context -> input option -> state -> proof tzresult Lwt.t diff --git a/src/proto_alpha/lib_protocol/sc_rollup_PVM_sem.mli b/src/proto_alpha/lib_protocol/sc_rollup_PVM_sem.mli index 2094109fc5c6a1c9af743d6da158685d674727fa..693c082c49c894a57e96167656876359f496433d 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_PVM_sem.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_PVM_sem.mli @@ -183,22 +183,17 @@ module type S = sig execution step. *) val proof_start_state : proof -> hash - (** [proof_stop_state proof] returns the final state hash of the [proof] - execution step. *) - val proof_stop_state : proof -> hash option + (** [proof_stop_state input_given proof] returns the final state hash of + the [proof] execution step. + Returns [None] if the [input_requested] do not match the [input_given]. + *) + val proof_stop_state : input option -> proof -> hash option (** [proof_input_requested proof] returns the [input_request] status of the start state of the proof, as given by [is_input_state]. This must match with the inbox proof to complete a valid refutation game proof. *) val proof_input_requested : proof -> input_request - (** [proof_input_given proof] returns the [input], if any, provided to - the start state of the proof using the [set_input] function. If - [None], the proof is an [eval] step instead, or the machine is - blocked because the inbox is fully read. This must match with the - inbox proof to complete a valid refutation game proof. *) - val proof_input_given : proof -> input option - (** [state_hash state] returns a compressed representation of [state]. *) val state_hash : state -> hash Lwt.t @@ -231,7 +226,7 @@ module type S = sig (** [verify_proof p] checks the proof [p]. See the doc-string for the [proof] type. *) - val verify_proof : proof -> bool Lwt.t + val verify_proof : input option -> proof -> bool Lwt.t (** [produce_proof ctxt input_given state] should return a [proof] for the PVM step starting from [state], if possible. This may fail for diff --git a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml index 3e431fe18dbe331ee158def7e0382c0599d0b80b..60ae2a18e594dc466828c2046d902697dd3ce99e 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_arith.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_arith.ml @@ -114,21 +114,16 @@ module type S = sig val get_is_stuck : state -> string option Lwt.t end -type 'a proof = { - tree_proof : 'a; - given : Sc_rollup_PVM_sem.input option; - requested : Sc_rollup_PVM_sem.input_request; -} +type 'a proof = {tree_proof : 'a; requested : Sc_rollup_PVM_sem.input_request} let proof_encoding : 'a Data_encoding.t -> 'a proof Data_encoding.t = fun encoding -> let open Data_encoding in conv - (fun {tree_proof; given; requested} -> (tree_proof, given, requested)) - (fun (tree_proof, given, requested) -> {tree_proof; given; requested}) - (obj3 + (fun {tree_proof; requested} -> (tree_proof, requested)) + (fun (tree_proof, requested) -> {tree_proof; requested}) + (obj2 (req "tree_proof" encoding) - (opt "given" PS.input_encoding) (req "requested" PS.input_request_encoding)) module Make (Context : P) : @@ -148,14 +143,12 @@ module Make (Context : P) : let proof_start_state p = Context.proof_before p.tree_proof - let proof_stop_state p = - match (p.given, p.requested) with + let proof_stop_state input_given p = + match (input_given, p.requested) with | None, PS.No_input_required -> Some (Context.proof_after p.tree_proof) | None, _ -> None | _ -> Some (Context.proof_after p.tree_proof) - let proof_input_given p = p.given - let proof_input_requested p = p.requested let name = "arith" @@ -1093,10 +1086,10 @@ module Make (Context : P) : in return (state, request) - let verify_proof proof = + let verify_proof input_given proof = let open Lwt_syntax in let* result = - Context.verify_proof proof.tree_proof (step_transition proof.given) + Context.verify_proof proof.tree_proof (step_transition input_given) in match result with | None -> return false @@ -1111,8 +1104,7 @@ module Make (Context : P) : Context.produce_proof context state (step_transition input_given) in match result with - | Some (tree_proof, requested) -> - return {tree_proof; given = input_given; requested} + | Some (tree_proof, requested) -> return {tree_proof; requested} | None -> fail Arith_proof_production_failed let verify_origination_proof proof boot_sector = @@ -1138,7 +1130,7 @@ module Make (Context : P) : in match result with | Some (tree_proof, ()) -> - return {tree_proof; given = None; requested = No_input_required} + return {tree_proof; requested = No_input_required} | None -> fail Arith_proof_production_failed (* TEMPORARY: The following definitions will be extended in a future commit. *) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_arith.mli b/src/proto_alpha/lib_protocol/sc_rollup_arith.mli index a84882473f0ac7e4904d48badcba8de10fe3398c..123c288fa65ca4bf4037abe7d9a2b00b6cf82995 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_arith.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_arith.mli @@ -126,11 +126,7 @@ module type S = sig val get_is_stuck : state -> string option Lwt.t end -type 'a proof = { - tree_proof : 'a; - given : Sc_rollup_PVM_sem.input option; - requested : Sc_rollup_PVM_sem.input_request; -} +type 'a proof = {tree_proof : 'a; requested : Sc_rollup_PVM_sem.input_request} module Protocol_implementation : S diff --git a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml index dcaca8ad3e5a841ee56b681f8f5082db0db162a7..c768c32f9c209c4266c1ce8a6d1463473f7e9a94 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml @@ -808,12 +808,12 @@ let check_dissection ~default_number_of_sections ~start_chunk ~stop_chunk makes the expected claims about start and stop states. The function {!play} below has to call {!Sc_rollup_proof_repr.valid} separately to ensure the proof is actually valid. *) -let check_proof_start_stop ~start_chunk ~stop_chunk proof = +let check_proof_start_stop ~start_chunk ~stop_chunk input_given proof = let open Lwt_result_syntax in let dist = Sc_rollup_tick_repr.distance start_chunk.tick stop_chunk.tick in let* () = check Z.(equal dist one) (Proof_unexpected_section_size dist) in let start_proof = Sc_rollup_proof_repr.start proof in - let stop_proof = Sc_rollup_proof_repr.stop proof in + let stop_proof = Sc_rollup_proof_repr.stop input_given proof in let* () = check (Option.equal State_hash.equal start_chunk.state_hash (Some start_proof)) @@ -849,15 +849,15 @@ let play game refutation = default_number_of_sections = game.default_number_of_sections; }) | Proof proof -> - let* () = check_proof_start_stop ~start_chunk ~stop_chunk proof in let {inbox_snapshot; level; pvm_name; _} = game in - let*! (proof_valid_tzresult : bool tzresult) = + let*! valid = Sc_rollup_proof_repr.valid inbox_snapshot level ~pvm_name proof in let* () = - match proof_valid_tzresult with - | Ok true -> return () - | Ok false -> invalid_move (Proof_invalid "no detail given") + match valid with + | Ok (true, input) -> + check_proof_start_stop ~start_chunk ~stop_chunk input proof + | Ok (false, _) -> invalid_move (Proof_invalid "no detail given") | Error e -> invalid_move (Proof_invalid (Format.asprintf "%a" pp_trace e)) in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index 909cec573063a16d88a00dbdfc99cf33d5355a81..d26ecc6bc74ed4f8324e6f87aff1d055931f705d 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -1060,12 +1060,11 @@ struct in match payload_opt with | Some payload -> - return - ( Single_level {level; inc; message_proof}, - Some - Sc_rollup_PVM_sem.{inbox_level = l; message_counter = n; payload} - ) - | None -> + let input_given = + Some Sc_rollup_PVM_sem.{inbox_level = l; message_counter = n; payload} + in + return (Single_level {level; inc; message_proof}, input_given) + | None -> ( if equal_history_proof inbox level then return (Single_level {level; inc; message_proof}, None) else @@ -1098,25 +1097,30 @@ struct "upper_level_tree was misformed---could not find level" (Lwt.return upper_level_opt) in - return - ( Level_crossing - { - lower = level; - upper; - inc; - lower_message_proof = message_proof; - upper_message_proof; - upper_level; - }, - Option.map - (fun payload -> + match payload_opt with + | None -> + proof_error "if upper_level_tree exists, the payload must exist" + | Some payload -> + let input_given = + Some Sc_rollup_PVM_sem. { inbox_level = upper_level; message_counter = Z.zero; payload; - }) - payload_opt ) + } + in + return + ( Level_crossing + { + lower = level; + upper; + inc; + lower_message_proof = message_proof; + upper_message_proof; + upper_level; + }, + input_given )) let empty context rollup level = let open Lwt_syntax in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_operations.ml b/src/proto_alpha/lib_protocol/sc_rollup_operations.ml index fb2594b3d70a12d21fc2bb49955b2ec88b1e1ef7..36835da925d97670d061f9edfd9686685b5936c6 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_operations.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_operations.ml @@ -239,7 +239,7 @@ let check_origination_proof kind boot_sector origination_proof = (not is_valid) (Sc_rollup_proof_repr.Sc_rollup_proof_check "invalid origination proof") in - match PVM.(proof_stop_state proof) with + match PVM.(proof_stop_state None proof) with | Some genesis_hash -> return genesis_hash | None -> fail diff --git a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml index e63e7862b5d8d573359950e9b288217417eaeecd..c947f907c7d4b97b4c2a700e5e8da80e9ec16368 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.ml @@ -69,9 +69,9 @@ let start proof = let (module P) = Sc_rollups.wrapped_proof_module proof.pvm_step in P.proof_start_state P.proof -let stop proof = +let stop input proof = let (module P) = Sc_rollups.wrapped_proof_module proof.pvm_step in - P.proof_stop_state P.proof + P.proof_stop_state input P.proof (* This takes an [input] and checks if it is at or above the given level. It returns [None] if this is the case. @@ -110,7 +110,6 @@ let valid snapshot commit_level ~pvm_name proof = let (input_requested : Sc_rollup_PVM_sem.input_request) = P.proof_input_requested P.proof in - let input_given = P.proof_input_given P.proof in let* input = match (input_requested, proof.inbox) with | No_input_required, None -> return None @@ -127,15 +126,9 @@ let valid snapshot commit_level ~pvm_name proof = (Format.pp_print_option pp_proof) proof.inbox) in - let* () = - check - (Option.equal - Sc_rollup_PVM_sem.input_equal - (Option.bind input (cut_at_level commit_level)) - input_given) - "Input given is not what inbox proof expects" - in - Lwt.map Result.ok (P.verify_proof P.proof) + let input = Option.bind input (cut_at_level commit_level) in + let*! valid = P.verify_proof input P.proof in + return (valid, input) module type PVM_with_context_and_state = sig include Sc_rollups.PVM.S @@ -164,28 +157,29 @@ let produce pvm_and_state commit_level = let*! (request : Sc_rollup_PVM_sem.input_request) = P.is_input_state P.state in - let* inbox, input_given = + let* proof, input = match request with | No_input_required -> return (None, None) | Initial -> - let* p, i = + let* proof, input = Inbox_with_history.( produce_proof context history inbox (Raw_level_repr.root, Z.zero)) in - return (Some (Inbox_with_history.to_serialized_proof p), i) + return (Some proof, input) | First_after (l, n) -> - let* p, i = + let* proof, input = Inbox_with_history.(produce_proof context history inbox (l, Z.succ n)) in - return (Some (Inbox_with_history.to_serialized_proof p), i) + return (Some proof, input) in - let input_given = Option.bind input_given (cut_at_level commit_level) in + let input_given = Option.bind input (cut_at_level commit_level) in let* pvm_step_proof = P.produce_proof P.context input_given P.state in let module P_with_proof = struct include P let proof = pvm_step_proof end in + let inbox = Option.map Inbox_with_history.to_serialized_proof proof in match Sc_rollups.wrap_proof (module P_with_proof) with | Some pvm_step -> return {pvm_step; inbox} | None -> proof_error "Could not wrap proof" diff --git a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.mli index cf237cc62de1d56282641bdef8b6961f58c99325..b8bf4c0bc24474da8321b152fef3eafc11df3977 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_proof_repr.mli @@ -78,7 +78,7 @@ val start : t -> State_hash.t (** The state hash of the machine after the step. This must be checked against the value in the refutation game as well as checking the proof is valid. *) -val stop : t -> State_hash.t option +val stop : Sc_rollup_PVM_sem.input option -> t -> State_hash.t option (** Check the validity of a proof. @@ -92,13 +92,16 @@ val stop : t -> State_hash.t option PVM proof ; - the [pvm_name], used to check that the proof given has the right - PVM kind. *) + PVM kind. + + It also returns the optional input executed during the proof. +*) val valid : Sc_rollup_inbox_repr.history_proof -> Raw_level_repr.t -> pvm_name:string -> t -> - bool tzresult Lwt.t + (bool * Sc_rollup_PVM_sem.input option) tzresult Lwt.t module type PVM_with_context_and_state = sig include Sc_rollups.PVM.S diff --git a/src/proto_alpha/lib_protocol/sc_rollup_wasm.ml b/src/proto_alpha/lib_protocol/sc_rollup_wasm.ml index 06c99ba88cd83034aa980cce8b22c548eb800838..e9cc42e49583062d9858a637aaac08b3c6c46fd0 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_wasm.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_wasm.ml @@ -101,21 +101,14 @@ module V2_0_0 = struct Get rid of the duplication by writing the projection functions and removing the [given] and [requested] fields. *) - type 'a proof = { - tree_proof : 'a; - given : PS.input option; - requested : PS.input_request; - } + type 'a proof = {tree_proof : 'a; requested : PS.input_request} let proof_encoding e = let open Data_encoding in conv - (fun {tree_proof; given; requested} -> (tree_proof, given, requested)) - (fun (tree_proof, given, requested) -> {tree_proof; given; requested}) - (obj3 - (req "tree_proof" e) - (opt "given" PS.input_encoding) - (req "requested" PS.input_request_encoding)) + (fun {tree_proof; requested} -> (tree_proof, requested)) + (fun (tree_proof, requested) -> {tree_proof; requested}) + (obj2 (req "tree_proof" e) (req "requested" PS.input_request_encoding)) module Make (Context : P) : S @@ -130,16 +123,14 @@ module V2_0_0 = struct type nonrec proof = Context.proof proof - let proof_input_given p = p.given - let proof_input_requested p = p.requested let proof_encoding = proof_encoding Context.proof_encoding let proof_start_state p = Context.proof_before p.tree_proof - let proof_stop_state p = - match (p.given, p.requested) with + let proof_stop_state input_given p = + match (input_given, p.requested) with | None, PS.No_input_required -> Some (Context.proof_after p.tree_proof) | None, _ -> None | _ -> Some (Context.proof_after p.tree_proof) @@ -318,10 +309,10 @@ module V2_0_0 = struct in return (state, request) - let verify_proof proof = + let verify_proof input_given proof = let open Lwt_syntax in let* result = - Context.verify_proof proof.tree_proof (step_transition proof.given) + Context.verify_proof proof.tree_proof (step_transition input_given) in match result with | None -> return false @@ -336,8 +327,7 @@ module V2_0_0 = struct Context.produce_proof context state (step_transition input_given) in match result with - | Some (tree_proof, requested) -> - return {tree_proof; given = input_given; requested} + | Some (tree_proof, requested) -> return {tree_proof; requested} | None -> fail WASM_proof_production_failed let verify_origination_proof proof boot_sector = @@ -363,7 +353,7 @@ module V2_0_0 = struct in match result with | Some (tree_proof, ()) -> - return {tree_proof; given = None; requested = No_input_required} + return {tree_proof; requested = No_input_required} | None -> fail WASM_proof_production_failed type output_proof = { diff --git a/src/proto_alpha/lib_protocol/sc_rollup_wasm.mli b/src/proto_alpha/lib_protocol/sc_rollup_wasm.mli index a94b15a63ae07b8a26de4cbe6a078d0d73588c6c..f702f6b744abc011fb1e7341b48e2f19abf8ef6e 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_wasm.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_wasm.mli @@ -80,11 +80,7 @@ module V2_0_0 : sig Tree.t -> tree -> (tree -> (tree * 'a) Lwt.t) -> (proof * 'a) option Lwt.t end - type 'a proof = { - tree_proof : 'a; - given : Sc_rollup_PVM_sem.input option; - requested : Sc_rollup_PVM_sem.input_request; - } + type 'a proof = {tree_proof : 'a; requested : Sc_rollup_PVM_sem.input_request} val proof_encoding : 'a Data_encoding.t -> 'a proof Data_encoding.t 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 a48784ae11dffc22317b84088bc088ee16200450..65a45ce83382160900fd588b637213a77be3cdee 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 @@ -149,7 +149,7 @@ let genesis_commitment ~boot_sector ~origination_level = function let proof = WithExceptions.Result.get_ok ~loc:__LOC__ proof in let genesis_state_hash = WithExceptions.Option.get ~loc:__LOC__ - @@ Arith_pvm.proof_stop_state proof + @@ Arith_pvm.proof_stop_state None proof in return Sc_rollup.Commitment.( @@ -161,7 +161,7 @@ let genesis_commitment ~boot_sector ~origination_level = function let proof = WithExceptions.Result.get_ok ~loc:__LOC__ proof in let genesis_state_hash = WithExceptions.Option.get ~loc:__LOC__ - @@ Wasm_pvm.proof_stop_state proof + @@ Wasm_pvm.proof_stop_state None proof in return Sc_rollup.Commitment.( diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml index c2680607ee62de0f695a5e153bdf3243c0f4a6c7..e2b682170e8513372b7ef8419b13533d660bae17 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_inbox.ml @@ -367,10 +367,7 @@ let test_inbox_proof_production (list_of_payloads, l, n) = Node.form_history_proof ctxt history inbox (Some current_level_tree) >|= Environment.wrap_tzresult in - let*! result = - Node.produce_proof ctxt history history_proof (l, n) - >|= Environment.wrap_tzresult - in + let*! result = Node.produce_proof ctxt history history_proof (l, n) in match result with | Ok (proof, input) -> ( (* We now switch to a protocol inbox built from the same messages @@ -379,9 +376,7 @@ let test_inbox_proof_production (list_of_payloads, l, n) = @@ fun _ctxt _current_level_tree _history inbox _inboxes -> let snapshot = take_snapshot inbox in let proof = node_proof_to_protocol_proof proof in - let*! verification = - verify_proof (l, n) snapshot proof >|= Environment.wrap_tzresult - in + let*! verification = verify_proof (l, n) snapshot proof in match verification with | Ok v_input -> fail_unless @@ -411,9 +406,7 @@ let test_inbox_proof_verification (list_of_payloads, l, n) = | Some inbox -> ( let snapshot = take_snapshot inbox in let proof = node_proof_to_protocol_proof proof in - let*! verification = - verify_proof (l, n) snapshot proof >|= Environment.wrap_tzresult - in + let*! verification = verify_proof (l, n) snapshot proof in match verification with | Ok _ -> fail [err "Proof should not be valid"] | Error _ -> return (ok ())) @@ -432,7 +425,6 @@ let test_empty_inbox_proof (level, n) = in let*! result = Node.produce_proof ctxt history history_proof (Raw_level_repr.root, n) - >|= Environment.wrap_tzresult in match result with | Ok (proof, input) -> ( @@ -444,7 +436,6 @@ let test_empty_inbox_proof (level, n) = let proof = node_proof_to_protocol_proof proof in let*! verification = verify_proof (Raw_level_repr.root, n) snapshot proof - >|= Environment.wrap_tzresult in match verification with | Ok v_input -> 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 2aa51ff6d942e830f39c6896fddfccdbfb696a83..df294da111d99a91d1da08bdf4e0a53521b2b4e3 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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_headers_s.out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_headers_s.out index 998a32806c97ee65e90baafa26a1eaf60c6d9d9d..ba854dbde42105898247497a0472874ebe4d8f1f 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_headers_s.out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_headers_s.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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 d69846c4b1977f049be660a70ef6c851b288e971..59da690b7f2fb4c4dc77054e7a7b8397f1f93f4e 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 05e99990733770d424edda0d88415a3d1a9e6b77..bb54e3c1f6c115fb00c0fbe3813a4c669e29966a 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 35ec599f593383e63a56492c9157cc4827d668fd..c2fb1eaa5cf8fde9b59d2511f0c2cdb576244ffa 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 05e99990733770d424edda0d88415a3d1a9e6b77..bb54e3c1f6c115fb00c0fbe3813a4c669e29966a 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 05e99990733770d424edda0d88415a3d1a9e6b77..bb54e3c1f6c115fb00c0fbe3813a4c669e29966a 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 474db498c8120d13f55241463d7df538119a2de2..0998049a0a8afb83fa5feeb0bc9d7196b6f11e7e 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 efaf8e54484e00f12e35d01d74b78ab2cf4d7760..4fa070a94272f1ac90283b13a2b46738f508135b 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 65d5c90695957a63661c7afed4acaaf1220642d5..bc11d578e1e7669dd6f23d918058fe83ceec6a38 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 2bdeb05db422bbf09bb671b9822468432bd83459..d412777ba13113f9d4a39e8a5169791a851bd2f1 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 09e256ebbbb2e4692b0747cc558e856cd06ff65b..988c3bbf5fff6c89a1e500387780ce31ca7e10d6 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 d3da8030325cbe01bd516ea5c553e917b883be9b..75d2efea832837627ed8a52e3cc780c020a36eb4 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 05e99990733770d424edda0d88415a3d1a9e6b77..bb54e3c1f6c115fb00c0fbe3813a4c669e29966a 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 2894cb051d10a50fd095dc30512a5d045518a823..9fc5a18ea23f955018d4c9b6972a6920ebc17622 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 ea7adcc606794f5b0f185b3af20c351e713ba7ab..d41a1a1c73815d6452772b6de7da8a6f776b7367 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 0fc34521a83b4ba4ac42a491991d14885aa94f22..57b217eea1cf5a592328815781e6fdbc410a28c5 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 0fc34521a83b4ba4ac42a491991d14885aa94f22..57b217eea1cf5a592328815781e6fdbc410a28c5 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 64c3757e85c4c2291128d9df57cebac3a59d704a..180707e3e9ff3227adbd04d9e065bb3f364ba2a9 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 fa6d721ddab21e92dabce68bff7139c6acea829e..6bd39b87d4c8d2f80f5502ae7253316cbd9989ed 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 0fc34521a83b4ba4ac42a491991d14885aa94f22..57b217eea1cf5a592328815781e6fdbc410a28c5 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 0fc34521a83b4ba4ac42a491991d14885aa94f22..57b217eea1cf5a592328815781e6fdbc410a28c5 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 aa4d5a19dc088373c1feaf5ba88e416cef5287a3..e5832235bb7de07844f251605b8bbae8d938bb91 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 f72579ebde050bd66f7194736c5b928edd9267a8..5bc46a4a1ad1f56f3fa104c0b914d91abae6fa41 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 0fc34521a83b4ba4ac42a491991d14885aa94f22..57b217eea1cf5a592328815781e6fdbc410a28c5 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 0fc34521a83b4ba4ac42a491991d14885aa94f22..57b217eea1cf5a592328815781e6fdbc410a28c5 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 ff3e6da596064854af395c134b8c225aa4f724c2..92553c7bf4c5a0de8a4092735aa82e82e7408ec2 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 ae6b36701e59023361f0385a03988af2b8b0d3f0..c22e1e6350c8a180cfd0a475451945a7f6885448 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 fc54cdc0561f7ae076bd5d23222dba5ee4ab68e5..730840db2c1dc17ae35d54ce9f7c8b35a9904ac7 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 fb5133e6015b2bb5ea4dd9234833a05c53dbaf50..0601792e04e57736ef2837b9a0cce52c7da9dbaa 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 e2d03c1267b0e6e3d585fb87e0b55325b6fc22a2..d7ebbfc9b9d94da10ed19529610da6650eb2d565 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 d28c0b3123223d94075a4604fdefb7caff74c50b..ce191f776aabed6e56dfada42f2c3500b17d6e9e 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 bf397ee95e930c85d6c61d06bff5eb0ef3e91653..d5e42bf119d0e8050805ae65bf86c25418761161 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 933c5b6a76ef5259dc30b00d4a753ce27ef7f6d5..edc805ac615b630b664bc66116ca3c6a7ed122d3 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 2a5e11eccab7ed6534ba9f65a640ff339c81c270..2a72565700a182ab6d148c9e5f1fe7e7bca59991 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 ff3e6da596064854af395c134b8c225aa4f724c2..92553c7bf4c5a0de8a4092735aa82e82e7408ec2 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 e2d03c1267b0e6e3d585fb87e0b55325b6fc22a2..d7ebbfc9b9d94da10ed19529610da6650eb2d565 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 11a62d474ea7376a962561833a830d7011ba1848..7d48339954a05a70d90166098dcdde1e543e87ac 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 5550129c872a4130e3d960830a7644721ee5da05..fdcc8b3ec49fbab9074ea224ae9a22ec365457f7 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 b0ed8adb196e6ccd472051c483e7dc8c7d163ac3..59685a9655d29ebf1d9d6a12bf92a5159285b0a4 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 a97a9f90a81f3a0f12117c663f2c80bf85ca37e9..940947f950ea3e3f44929e377e5145a68a8511ff 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.000684 + Fee to the baker: ꜩ0.000683 Expected counter: 1 Gas limit: 3211 Storage limit: 6687 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 + [PUBLIC_KEY_HASH] ... -ꜩ0.000683 + payload fees(the block proposer) ....... +ꜩ0.000683 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.000674 + Fee to the baker: ꜩ0.000673 Expected counter: 2 Gas limit: 3211 Storage limit: 6677 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000673 + payload fees(the block proposer) ....... +ꜩ0.000673 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 b0ed8adb196e6ccd472051c483e7dc8c7d163ac3..59685a9655d29ebf1d9d6a12bf92a5159285b0a4 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 97c245f18cb3b33d07c2c7f5ab2a4d3fb5d6a1d0..3aade4e80c875ed0f443334914264a75e39e1529 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 2 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 3 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 4 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 5 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 6 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 7 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 8 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 9 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 10 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 6b8012103f732f9fc53a404025d30a0e9bdd3ac4..5e4e9bf2b772303480c6a8eeedbc0d370e590a3b 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.000684 + Fee to the baker: ꜩ0.000683 Expected counter: 1 Gas limit: 3211 Storage limit: 6687 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000684 - payload fees(the block proposer) ....... +ꜩ0.000684 + [PUBLIC_KEY_HASH] ... -ꜩ0.000683 + payload fees(the block proposer) ....... +ꜩ0.000683 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 5c5d3d7fd5a2ab17cf0161f650840b22942fbb7e..d114705626dc8cf52fda172d75b80bf2cb4fd4db 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 54144e8d3b7b771cf6077b9257d92a92349e0c6c..35d102ccf1fad218cfc161dd110b9a0d871e54e1 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 586fa0449a31fc8caaf29855692beee236cc9a37..44e8bf006bd05b95cb4161539b9e4739cfafa2cb 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.000672 + Fee to the baker: ꜩ0.000671 Expected counter: 1 Gas limit: 3211 Storage limit: 6675 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000672 - payload fees(the block proposer) ....... +ꜩ0.000672 + [PUBLIC_KEY_HASH] ... -ꜩ0.000671 + payload fees(the block proposer) ....... +ꜩ0.000671 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 b0ed8adb196e6ccd472051c483e7dc8c7d163ac3..59685a9655d29ebf1d9d6a12bf92a5159285b0a4 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 2f28fffa49436aa7ae53cfb29647517c89fbd841..754f47256d2147710234651b3670dcee99677241 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 b0ed8adb196e6ccd472051c483e7dc8c7d163ac3..59685a9655d29ebf1d9d6a12bf92a5159285b0a4 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 b0ed8adb196e6ccd472051c483e7dc8c7d163ac3..59685a9655d29ebf1d9d6a12bf92a5159285b0a4 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 8f1901b40e787116324171245edf2261c2c02854..1477670754ffb6e1a7b561e87182ec6c9f6a46ec 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 06d089e04531b9eed1a0721f3209d307db74e65d..a7d11cf12f760c63d81aa909fcfc5e94d578a86e 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 9568478c23c51dfbed0cfc85ee0ce479d1024feb..da0fd106202d21a5fce98c79bd38210dbb6f7f1e 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 d14e0962908c867791e2fc92a93844b4e0a46386..fe7f75ac245067b57a9fadf1c9552eb9d2c39cb1 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 313f0191901cace09d980459726ac5b6e8f2052d..b04d3d17f2dcc0283bea1b99927fb6ce0dd46664 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 7fb77cbcf23c9724de6cbc755cdd2e4ed868c152..e642728619a2dca0fc74cbfc736c8d8e0e77d61e 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 b0ed8adb196e6ccd472051c483e7dc8c7d163ac3..59685a9655d29ebf1d9d6a12bf92a5159285b0a4 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 2e0e666f89e5dcf2758abc001d3cb60eb5308047..bf277819f434deea6c0c24cf35dd42cd6545b450 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 045568132fde6af84de22fdbe93c84deb86a875d..78a418171710971ec60e785def19b15e5cc155ae 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 259c7cef0a15972344585892c2b7693c9178d8f5..458c79ee99c085d8247472cfb24f852b2274b108 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 259c7cef0a15972344585892c2b7693c9178d8f5..458c79ee99c085d8247472cfb24f852b2274b108 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 9fdab69d270a328757b05f0e974ffcfb8e4f6e16..d8fc078373c5bb6b4bc467107df734205b19a58d 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 af516e1e30b1968a7a8caf19b8bfba356dbb6c8c..0ccd9f4513b564280491f036f8345c3c6b84da23 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 259c7cef0a15972344585892c2b7693c9178d8f5..458c79ee99c085d8247472cfb24f852b2274b108 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 259c7cef0a15972344585892c2b7693c9178d8f5..458c79ee99c085d8247472cfb24f852b2274b108 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 d56968748ffa5d99972e90d7475631de34afe891..e5a5e8290c8b76ed81574a1944bc2b7160423fe7 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 4ca9c9008f9dd7340620e1c9f338072edd59f282..c5f8e48813176a612b41875a11abda3f0bf21c70 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 259c7cef0a15972344585892c2b7693c9178d8f5..458c79ee99c085d8247472cfb24f852b2274b108 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 259c7cef0a15972344585892c2b7693c9178d8f5..458c79ee99c085d8247472cfb24f852b2274b108 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 d0a4d571ff5eb548c98c617fb85c3e7e99cea623..6a3fc36b8592d909f12c99cb2cc8244df159c103 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 6e0d52bd387dbae94c8439f166f86796ff85ec38..3b10789d19493b37349dca7c9a17fe4141bb4863 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 6ec680ffd77de778b3a4798f70c2704192f29172..24552841e526fd125cd5c44a86e739984b1a9b8e 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 19a016ed5a09b8e563e608601fc4d6aba05fa1d3..44e46de0c53394350ae07bf8c19d8e8c256a0d13 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 c762f2872cbcf6aa7fbb95966def9dd678fca267..e08d738c0ab0c12d30e4eec98eec1603dd3aa3e0 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 05f6083a53d37e8aa7534f89764e87e37cfba2cd..489f3cff871f91a3f428483c53767daea540830b 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 9de533a3d0c6ab3cf3718d3b9db57216287492ec..f199bc3c3c270561d42dd72a526a57fdf52a5bbc 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 3861ffab23a6e2029b39671170326f12ebbbbe40..c694314742a0d6300a4435accd23b364467afa1b 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 03a4bd70617894053376f56c57069ffd7666cfea..5f53e905e27f58a52bd3b5d0f726617276c93561 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 d0a4d571ff5eb548c98c617fb85c3e7e99cea623..6a3fc36b8592d909f12c99cb2cc8244df159c103 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 c762f2872cbcf6aa7fbb95966def9dd678fca267..e08d738c0ab0c12d30e4eec98eec1603dd3aa3e0 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 c8d3b9c01a3b2f5dc2b0d2031c8967370339a71b..616fff4c0101382ab2ebe67a1d4103a87472c18f 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.004715 + Fee to the baker: ꜩ0.004714 Expected counter: 1 Gas limit: 3227 Storage limit: 10711 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.004715 - payload fees(the block proposer) ....... +ꜩ0.004715 + [PUBLIC_KEY_HASH] ... -ꜩ0.004714 + payload fees(the block proposer) ....... +ꜩ0.004714 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 - runs with kernel - computation.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - computation.out index 47f252cea6620e206ceea5228d662c1d6e86d05a..d549d08ad956ccce5f1257dc0290f622b1060982 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - computation.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - computation.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.01055 + Fee to the baker: ꜩ0.010549 Expected counter: 1 Gas limit: 3250 Storage limit: 16543 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01055 - payload fees(the block proposer) ....... +ꜩ0.01055 + [PUBLIC_KEY_HASH] ... -ꜩ0.010549 + payload fees(the block proposer) ....... +ꜩ0.010549 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 - runs with kernel - no_parse_bad_fingerprint.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint.out index d285f5007bbdca5807de5777bc419f4b30333bd5..105ddd9eb04887ad3df39da221a4d3cd80ec23bd 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_bad_fingerprint.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.01055 + Fee to the baker: ꜩ0.010549 Expected counter: 1 Gas limit: 3250 Storage limit: 16543 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.01055 - payload fees(the block proposer) ....... +ꜩ0.01055 + [PUBLIC_KEY_HASH] ... -ꜩ0.010549 + payload fees(the block proposer) ....... +ꜩ0.010549 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 - runs with kernel - no_parse_random.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_random.out index e733e55083fe39e63f4c87d75a8bbae2c18cd703..0d9f333c0437e963f0ea0e4e7f0e5e7337156903 100644 Binary files a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_random.out and b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - runs with kernel - no_parse_random.out differ