From f9fcbfd2d1525eab133e96cb2894b29cc315f402 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Mon, 5 Sep 2022 15:11:53 +0200 Subject: [PATCH 1/2] Scoru,Proto: remove [input_given] from the proof We instead fetch the input using the inbox proof --- .../bin_sc_rollup_node/refutation_game.ml | 2 +- .../lib_protocol/alpha_context.mli | 20 +++------ .../lib_protocol/sc_rollup_PVM_sem.ml | 6 +-- .../lib_protocol/sc_rollup_PVM_sem.mli | 17 +++---- .../lib_protocol/sc_rollup_arith.ml | 28 +++++------- .../lib_protocol/sc_rollup_arith.mli | 6 +-- .../lib_protocol/sc_rollup_game_repr.ml | 14 +++--- .../lib_protocol/sc_rollup_inbox_repr.ml | 44 ++++++++++--------- .../lib_protocol/sc_rollup_operations.ml | 2 +- .../lib_protocol/sc_rollup_proof_repr.ml | 30 +++++-------- .../lib_protocol/sc_rollup_proof_repr.mli | 9 ++-- .../lib_protocol/sc_rollup_wasm.ml | 30 +++++-------- .../lib_protocol/sc_rollup_wasm.mli | 6 +-- .../test/helpers/sc_rollup_helpers.ml | 4 +- .../test/unit/test_sc_rollup_inbox.ml | 15 ++----- 15 files changed, 91 insertions(+), 142 deletions(-) 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 82631b07af5a..daca31fbfd1a 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 fd1de02d68aa..2d05931eb1db 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 982f2b7ed54e..1f86788cece1 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 2094109fc5c6..693c082c49c8 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 3e431fe18dbe..60ae2a18e594 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 a84882473f0a..123c288fa65c 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 dcaca8ad3e5a..c768c32f9c20 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 909cec573063..d26ecc6bc74e 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 fb2594b3d70a..36835da925d9 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 e63e7862b5d8..c947f907c7d4 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 cf237cc62de1..b8bf4c0bc244 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 06c99ba88cd8..e9cc42e49583 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 a94b15a63ae0..f702f6b744ab 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 a48784ae11df..65a45ce83382 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 c2680607ee62..e2b682170e85 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 -> -- GitLab From 87f8d939f8721f79bfef0b84be87176f3bb3a413 Mon Sep 17 00:00:00 2001 From: Valentin Chaboche Date: Thu, 8 Sep 2022 08:59:08 +0200 Subject: [PATCH 2/2] Scoru,Tezt: update regression traces --- ...ctionality (feature_flag_is_disabled).out | 6 +- ...ctionality (rollup_node_dal_headers_s.out | 6 +- ...ctionality (rollup_node_dal_subscript.out | 6 +- ...- a late rollup should catch up (late).out | 6 +- ...Alpha- arith - consecutive commitments.out | 6 +- ...rith - get genesis info of a sc rollup.out | 6 +- ...nt hash and inbox level of a sc rollup.out | 6 +- ...ce of inbox in the rollup node (basic).out | 6 +- ...inbox in the rollup node (disconnects).out | 6 +- ... the rollup node (handles_chain_reorg).out | 6 +- ...ances PVM state with internal messages.out | 6 +- ... node advances PVM state with messages.out | 6 +- ...th - node boots into the initial state.out | 6 +- ...tion of a SCORU executes without error.out | 6 +- ...ssages in the inbox - check inbox size.out | 6 +- ...s in the inbox - current messages hash.out | 6 +- ...games winning strategies (inbox_proof).out | 6 +- ...ng strategies (inbox_proof_at_genesis).out | 6 +- ...rategies (inbox_proof_many_empty_level.out | 6 +- ...rategies (inbox_proof_one_empty_level).out | 6 +- ...games winning strategies (pvm_proof_0).out | 6 +- ...games winning strategies (pvm_proof_1).out | 6 +- ...games winning strategies (pvm_proof_2).out | 6 +- ...games winning strategies (pvm_proof_3).out | 6 +- ...ning strategies (pvm_proof_at_genesis).out | 6 +- ...ion games winning strategies (timeout).out | 6 +- ...ing of commitments (batcher_does_not_p.out | 6 +- ...ing of commitments (commitment_is_stor.out | 6 +- ...ing of commitments (first_published_at.out | 6 +- ...ing of commitments (handles_chain_reor.out | 6 +- ...ing of commitments (maintenance_publis.out | 6 +- ...ndling of commitments (messages_reset).out | 6 +- ...ing of commitments (no_commitment_publ.out | 6 +- ...ing of commitments (node_use_proto_par.out | 6 +- ...dling of commitments (non_final_level).out | 6 +- ...ing of commitments (observer_does_not_.out | 6 +- ...ing of commitments (operator_publishes.out | 6 +- ...ing of commitments (robust_to_failures.out | 6 +- ...o cement not on top of LCC or disputed.out | 6 +- ... smart contract optimistic rollup node.out | 6 +- ...lpha- ensure arith boot sector is used.out | 12 ++-- ...ract rollup address through the client.out | 6 +- .../Alpha- list originated rollups.out | 60 +++++++++--------- ...lpha- originate arith with boot sector.out | 6 +- .../Alpha- refutation game timeout.out | 6 +- ...ation- check the punishment and reward.out | 6 +- .../Alpha- valid dispute dissection.out | 6 +- ...- a late rollup should catch up (late).out | 6 +- ...- wasm_2_0_0 - consecutive commitments.out | 6 +- ..._0_0 - get genesis info of a sc rollup.out | 6 +- ...itment hash and inbox level of a sc ro.out | 6 +- ...ce of inbox in the rollup node (basic).out | 6 +- ...inbox in the rollup node (disconnects).out | 6 +- ...n the rollup node (handles_chain_reorg.out | 6 +- ...ances PVM state with internal messages.out | 6 +- ... node advances PVM state with messages.out | 6 +- ..._0 - node boots into the initial state.out | 6 +- ...tion of a SCORU executes without error.out | 6 +- ...ssages in the inbox - check inbox size.out | 6 +- ...s in the inbox - current messages hash.out | 6 +- ...games winning strategies (inbox_proof).out | 6 +- ...ng strategies (inbox_proof_at_genesis).out | 6 +- ...ng strategies (inbox_proof_many_empty_.out | 6 +- ...ng strategies (inbox_proof_one_empty_l.out | 6 +- ...games winning strategies (pvm_proof_0).out | 6 +- ...games winning strategies (pvm_proof_1).out | 6 +- ...games winning strategies (pvm_proof_2).out | 6 +- ...games winning strategies (pvm_proof_3).out | 6 +- ...ning strategies (pvm_proof_at_genesis).out | 6 +- ...ion games winning strategies (timeout).out | 6 +- ...handling of commitments (batcher_does_.out | 6 +- ...handling of commitments (commitment_is.out | 6 +- ...handling of commitments (first_publish.out | 6 +- ...handling of commitments (handles_chain.out | 6 +- ...handling of commitments (maintenance_p.out | 6 +- ...handling of commitments (messages_rese.out | 6 +- ...handling of commitments (no_commitment.out | 6 +- ...handling of commitments (node_use_prot.out | 6 +- ...handling of commitments (non_final_lev.out | 6 +- ...handling of commitments (observer_does.out | 6 +- ...handling of commitments (operator_publ.out | 6 +- ...handling of commitments (robust_to_fai.out | 6 +- ...2_0_0 - runs with kernel - computation.out | 6 +- ...with kernel - no_parse_bad_fingerprint.out | 6 +- ...0 - runs with kernel - no_parse_random.out | Bin 23046 -> 23046 bytes 85 files changed, 282 insertions(+), 282 deletions(-) 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 2aa51ff6d942..df294da111d9 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 998a32806c97..ba854dbde421 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 d69846c4b197..59da690b7f2f 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 05e999907337..bb54e3c1f6c1 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 35ec599f5933..c2fb1eaa5cf8 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 05e999907337..bb54e3c1f6c1 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 05e999907337..bb54e3c1f6c1 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 474db498c812..0998049a0a8a 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 efaf8e54484e..4fa070a94272 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 65d5c9069595..bc11d578e1e7 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 2bdeb05db422..d412777ba131 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 09e256ebbbb2..988c3bbf5fff 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 d3da8030325c..75d2efea8328 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 05e999907337..bb54e3c1f6c1 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 2894cb051d10..9fc5a18ea23f 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 ea7adcc60679..d41a1a1c7381 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 0fc34521a83b..57b217eea1cf 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 0fc34521a83b..57b217eea1cf 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 64c3757e85c4..180707e3e9ff 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 fa6d721ddab2..6bd39b87d4c8 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 0fc34521a83b..57b217eea1cf 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 0fc34521a83b..57b217eea1cf 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 aa4d5a19dc08..e5832235bb7d 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 f72579ebde05..5bc46a4a1ad1 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 0fc34521a83b..57b217eea1cf 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 0fc34521a83b..57b217eea1cf 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 ff3e6da59606..92553c7bf4c5 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 ae6b36701e59..c22e1e6350c8 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 fc54cdc0561f..730840db2c1d 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 fb5133e6015b..0601792e04e5 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 e2d03c1267b0..d7ebbfc9b9d9 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 d28c0b312322..ce191f776aab 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 bf397ee95e93..d5e42bf119d0 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 933c5b6a76ef..edc805ac615b 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 2a5e11eccab7..2a72565700a1 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 ff3e6da59606..92553c7bf4c5 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 e2d03c1267b0..d7ebbfc9b9d9 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 11a62d474ea7..7d48339954a0 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 5550129c872a..fdcc8b3ec49f 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 b0ed8adb196e..59685a9655d2 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 a97a9f90a81f..940947f950ea 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 b0ed8adb196e..59685a9655d2 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 97c245f18cb3..3aade4e80c87 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 6b8012103f73..5e4e9bf2b772 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 5c5d3d7fd5a2..d114705626dc 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 54144e8d3b7b..35d102ccf1fa 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 586fa0449a31..44e8bf006bd0 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 b0ed8adb196e..59685a9655d2 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 2f28fffa4943..754f47256d21 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 b0ed8adb196e..59685a9655d2 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 b0ed8adb196e..59685a9655d2 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 8f1901b40e78..1477670754ff 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 06d089e04531..a7d11cf12f76 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 9568478c23c5..da0fd106202d 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 d14e0962908c..fe7f75ac2450 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 313f0191901c..b04d3d17f2dc 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 7fb77cbcf23c..e642728619a2 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 b0ed8adb196e..59685a9655d2 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 2e0e666f89e5..bf277819f434 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 045568132fde..78a418171710 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 259c7cef0a15..458c79ee99c0 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 259c7cef0a15..458c79ee99c0 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 9fdab69d270a..d8fc078373c5 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 af516e1e30b1..0ccd9f4513b5 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 259c7cef0a15..458c79ee99c0 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 259c7cef0a15..458c79ee99c0 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 d56968748ffa..e5a5e8290c8b 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 4ca9c9008f9d..c5f8e4881317 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 259c7cef0a15..458c79ee99c0 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 259c7cef0a15..458c79ee99c0 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 d0a4d571ff5e..6a3fc36b8592 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 6e0d52bd387d..3b10789d1949 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 6ec680ffd77d..24552841e526 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 19a016ed5a09..44e46de0c533 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 c762f2872cbc..e08d738c0ab0 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 05f6083a53d3..489f3cff871f 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 9de533a3d0c6..f199bc3c3c27 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 3861ffab23a6..c694314742a0 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 03a4bd706178..5f53e905e27f 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 d0a4d571ff5e..6a3fc36b8592 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 c762f2872cbc..e08d738c0ab0 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 c8d3b9c01a3b..616fff4c0101 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 47f252cea662..d549d08ad956 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 d285f5007bbd..105ddd9eb048 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 GIT binary patch delta 32 ocmZqM!q~QjaRUc4qtWDzR^pQtm|yM0JJO$r~m)} -- GitLab