diff --git a/src/proto_alpha/bin_sc_rollup_node/context.ml b/src/proto_alpha/bin_sc_rollup_node/context.ml index 74aa8c0c991031b689a856ebf5ccc1747d0eed14..7c2beb5f91eee360c0f762a2dd4b83b5e084383f 100644 --- a/src/proto_alpha/bin_sc_rollup_node/context.ml +++ b/src/proto_alpha/bin_sc_rollup_node/context.ml @@ -93,6 +93,8 @@ let empty index = {index; tree = IStore.Tree.empty ()} let is_empty ctxt = IStore.Tree.is_empty ctxt.tree +let index context = context.index + module Proof (Hash : sig type t diff --git a/src/proto_alpha/bin_sc_rollup_node/context.mli b/src/proto_alpha/bin_sc_rollup_node/context.mli index 5e9aa163dd268185f39807fe0860430f8309a285..ec91fb9c5c3150ec6fa495b11547129d1476794b 100644 --- a/src/proto_alpha/bin_sc_rollup_node/context.mli +++ b/src/proto_alpha/bin_sc_rollup_node/context.mli @@ -56,6 +56,9 @@ val pp_hash : Format.formatter -> hash -> unit information contained in the configuration [config]. *) val load : Configuration.t -> index Lwt.t +(** [index context] is the repository of the context [context]. *) +val index : t -> index + (** [close ctxt] closes the context index [ctxt]. *) val close : index -> unit Lwt.t 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 97c3e59261457f0032350d9a40843b02393069de..7fb8d1ca534d31ef3b5e1143e7715bb20542122a 100644 --- a/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml +++ b/src/proto_alpha/bin_sc_rollup_node/refutation_game.ml @@ -86,27 +86,30 @@ module Make (Interpreter : Interpreter.S) : let generate_proof configuration node_ctxt game start_state = let open Lwt_result_syntax in - let*! hash = + let*! snapshot_hash = Layer1.hash_of_level node_ctxt.Node_context.store - (Raw_level.to_int32 game.level) + (Int32.pred Raw_level.(to_int32 game.start_level)) in - let* history = Inbox.history_of_hash node_ctxt hash in - let* inbox = Inbox.inbox_of_hash node_ctxt hash in - let* ctxt = Node_context.checkout_context node_ctxt hash in - let*! messages_tree = Context.MessageTrees.find ctxt in - let* history, history_proof = + let* snapshot_inbox = Inbox.inbox_of_hash node_ctxt snapshot_hash in + let* snapshot_history = Inbox.history_of_hash node_ctxt snapshot_hash in + let* snapshot_ctxt = + Node_context.checkout_context node_ctxt snapshot_hash + in + let snapshot_ctxt_index = Context.index snapshot_ctxt in + let*! snapshot_messages_tree = Context.MessageTrees.find snapshot_ctxt in + let* snapshot_history, snapshot = Context.Inbox.form_history_proof - node_ctxt.context - history - inbox - messages_tree + snapshot_ctxt_index + snapshot_history + snapshot_inbox + snapshot_messages_tree >|= Environment.wrap_tzresult in let module P = struct include PVM - let context = node_ctxt.context + let context = snapshot_ctxt_index let state = start_state @@ -119,21 +122,22 @@ module Make (Interpreter : Interpreter.S) : module Inbox_with_history = struct include Context.Inbox - let history = history + let history = snapshot_history - let inbox = history_proof + let inbox = snapshot end end in let* proof = trace - (Sc_rollup_node_errors.Cannot_produce_proof (inbox, history, game.level)) - @@ (Sc_rollup.Proof.produce (module P) game.level + (Sc_rollup_node_errors.Cannot_produce_proof + (snapshot_inbox, snapshot_history, game.inbox_level)) + @@ (Sc_rollup.Proof.produce (module P) game.inbox_level >|= Environment.wrap_tzresult) in let*! res = Sc_rollup.Proof.valid - history_proof - game.level + snapshot + game.inbox_level ~pvm_name:game.pvm_name proof >|= Environment.wrap_tzresult @@ -175,7 +179,9 @@ module Make (Interpreter : Interpreter.S) : .Unreliable_tezos_node_returning_inconsistent_game | {state_hash = their_hash; tick} :: dissection -> ( let open Lwt_result_syntax in - let* our = Interpreter.state_of_tick node_ctxt tick game.level in + let* our = + Interpreter.state_of_tick node_ctxt tick game.inbox_level + in match (their_hash, our) with | None, None -> (* This case is absurd since: [None] can only occur at the @@ -193,7 +199,12 @@ module Make (Interpreter : Interpreter.S) : let* ok, ko = traverse (hash, tick) dissection in let choice = snd ok in let* dissection = - new_dissection ~default_number_of_sections node_ctxt game.level ok ko + new_dissection + ~default_number_of_sections + node_ctxt + game.inbox_level + ok + ko in let chosen_section_len = Sc_rollup.Tick.distance (snd ko) choice in return (choice, chosen_section_len, dissection) @@ -211,7 +222,7 @@ module Make (Interpreter : Interpreter.S) : let open Lwt_result_syntax in let final_move start_tick = let* start_state = - Interpreter.state_of_tick node_ctxt start_tick game.level + Interpreter.state_of_tick node_ctxt start_tick game.inbox_level in match start_state with | None -> diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 62b463dad7d0d2b1287ca061ac855a80bda239e5..62db6443344c13eae3afcd496d029594dc828a39 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3558,8 +3558,9 @@ module Sc_rollup : sig type t = { turn : player; - inbox_snapshot : Sc_rollup_inbox_repr.history_proof; - level : Raw_level.t; + inbox_snapshot : Inbox.history_proof; + start_level : Raw_level.t; + inbox_level : Raw_level.t; pvm_name : string; game_state : game_state; } @@ -3645,6 +3646,7 @@ module Sc_rollup : sig val initial : Inbox.history_proof -> + start_level:Raw_level.t -> pvm_name:string -> parent:Commitment.t -> child:Commitment.t -> 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 fae6b283e32bcd9ab8b2a41f10e108f71447e5ea..df0034b2e26ef95b13fee65123c7678a2566c9d4 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml @@ -61,7 +61,8 @@ module V1 = struct type t = { turn : player; inbox_snapshot : Sc_rollup_inbox_repr.history_proof; - level : Raw_level_repr.t; + start_level : Raw_level_repr.t; + inbox_level : Raw_level_repr.t; pvm_name : string; game_state : game_state; } @@ -130,20 +131,23 @@ module V1 = struct { turn = turn1; inbox_snapshot = inbox_snapshot1; - level = level1; + start_level = start_level1; + inbox_level = inbox_level1; pvm_name = pvm_name1; game_state = game_state1; } { turn = turn2; inbox_snapshot = inbox_snapshot2; - level = level2; + start_level = start_level2; + inbox_level = inbox_level2; pvm_name = pvm_name2; game_state = game_state2; } = player_equal turn1 turn2 && Sc_rollup_inbox_repr.equal_history_proof inbox_snapshot1 inbox_snapshot2 - && Raw_level_repr.equal level1 level2 + && Raw_level_repr.equal start_level1 start_level2 + && Raw_level_repr.equal inbox_level1 inbox_level2 && String.equal pvm_name1 pvm_name2 && game_state_equal game_state1 game_state2 @@ -202,14 +206,23 @@ module V1 = struct let encoding = let open Data_encoding in conv - (fun {turn; inbox_snapshot; level; pvm_name; game_state} -> - (turn, inbox_snapshot, level, pvm_name, game_state)) - (fun (turn, inbox_snapshot, level, pvm_name, game_state) -> - {turn; inbox_snapshot; level; pvm_name; game_state}) - (obj5 + (fun { + turn; + inbox_snapshot; + start_level; + inbox_level; + pvm_name; + game_state; + } -> + (turn, inbox_snapshot, start_level, inbox_level, pvm_name, game_state)) + (fun (turn, inbox_snapshot, start_level, inbox_level, pvm_name, game_state) + -> + {turn; inbox_snapshot; start_level; inbox_level; pvm_name; game_state}) + (obj6 (req "turn" player_encoding) (req "inbox_snapshot" Sc_rollup_inbox_repr.history_proof_encoding) - (req "level" Raw_level_repr.encoding) + (req "start_level" Raw_level_repr.encoding) + (req "inbox_level" Raw_level_repr.encoding) (req "pvm_name" string) (req "game_state" game_state_encoding)) @@ -242,14 +255,16 @@ module V1 = struct let pp ppf game = Format.fprintf ppf - "%a playing; inbox snapshot = %a; level = %a; pvm_name = %s; game_state \ - = %a" + "%a playing; inbox snapshot = %a; start level = %a; inbox level = %a; \ + pvm_name = %s; game_state = %a" pp_player game.turn Sc_rollup_inbox_repr.pp_history_proof game.inbox_snapshot Raw_level_repr.pp - game.level + game.start_level + Raw_level_repr.pp + game.inbox_level game.pvm_name pp_game_state game.game_state @@ -330,7 +345,7 @@ end let make_chunk state_hash tick = {state_hash; tick} -let initial inbox ~pvm_name ~(parent : Sc_rollup_commitment_repr.t) +let initial inbox ~start_level ~pvm_name ~(parent : Sc_rollup_commitment_repr.t) ~(child : Sc_rollup_commitment_repr.t) ~refuter ~defender ~default_number_of_sections = let ({alice; _} : Index.t) = Index.make refuter defender in @@ -359,7 +374,8 @@ let initial inbox ~pvm_name ~(parent : Sc_rollup_commitment_repr.t) { turn = (if alice_to_play then Alice else Bob); inbox_snapshot = inbox; - level = child.inbox_level; + start_level; + inbox_level = child.inbox_level; pvm_name; game_state; } @@ -950,9 +966,9 @@ let check_proof_refute_stop_state ~stop_state input input_request proof = let validity_final_move ~first_move ~proof ~game ~start_chunk ~stop_chunk = let open Lwt_result_syntax in let*! res = - let {inbox_snapshot; level; pvm_name; _} = game in + let {inbox_snapshot; inbox_level; pvm_name; _} = game in let*! valid = - Sc_rollup_proof_repr.valid inbox_snapshot level ~pvm_name proof + Sc_rollup_proof_repr.valid inbox_snapshot inbox_level ~pvm_name proof in let* () = if first_move then @@ -1047,7 +1063,8 @@ let play ~stakers game refutation = { turn = opponent game.turn; inbox_snapshot = game.inbox_snapshot; - level = game.level; + start_level = game.start_level; + inbox_level = game.inbox_level; pvm_name = game.pvm_name; game_state = new_game_state; }) @@ -1074,7 +1091,8 @@ let play ~stakers game refutation = { turn = opponent game.turn; inbox_snapshot = game.inbox_snapshot; - level = game.level; + start_level = game.start_level; + inbox_level = game.inbox_level; pvm_name = game.pvm_name; game_state = new_game_state; }) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.mli index 5d65d5c5ddc32865cf46bee9fb105222f856f793..a699a29ff2676615d17ea90006b566067e901e96 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.mli @@ -205,7 +205,8 @@ module V1 : sig type t = { turn : player; inbox_snapshot : Sc_rollup_inbox_repr.history_proof; - level : Raw_level_repr.t; + start_level : Raw_level_repr.t; + inbox_level : Raw_level_repr.t; pvm_name : string; game_state : game_state; } @@ -263,9 +264,9 @@ end (** To begin a game, first the conflict point in the commit tree is found, and then this function is applied. - [initial inbox parent child refuter defender] will construct an - initial game where [refuter] is next to play. The game has - [dissection] with three states: + [initial inbox ~start_level ~pvm_name ~parent ~child ~refuter ~defender + ~default_number_of_sections] will construct an initial game where [refuter] + is next to play. The game has [dissection] with three states: - firstly, the state (with tick zero) of [parent], the commitment that both stakers agree on. @@ -284,6 +285,7 @@ end increment from that state to its successor. *) val initial : Sc_rollup_inbox_repr.history_proof -> + start_level:Raw_level_repr.t -> pvm_name:string -> parent:Sc_rollup_commitment_repr.t -> child:Sc_rollup_commitment_repr.t -> diff --git a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml index 819c1d4c28a953af037ed227748ba3eeaf7b7f82..3cd43957b15e219bcaea8115749316f47cdc5a68 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml @@ -260,6 +260,7 @@ let start_game ctxt rollup ~player:refuter ~opponent:defender = let current_level = (Raw_context.current_level ctxt).level in let game = Sc_rollup_game_repr.initial + ~start_level:current_level (Sc_rollup_inbox_repr.take_snapshot ~current_level inbox) ~pvm_name:(Sc_rollups.Kind.name_of kind) ~parent:parent_info diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml index 5f0549c6752362b7c3bea3e603d7ca694b9bd02a..4c78078730590b209d6b9fbfb4ee43332f2c0d19 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_refutation_game.ml @@ -1292,6 +1292,9 @@ let operation_publish_commitment ctxt rollup predecessor inbox_level [start_tick]. *) let build_proof ~player_client start_tick (game : Game.t) = let open Lwt_result_syntax in + (* No messages are added between [game.start_level] and the current level + so we can take the existing inbox of players. Otherwise, we should find the + inbox of [start_level]. *) let inbox_context, messages_tree, history, inbox = player_client.inbox in let* history, history_proof = Lwt.map Environment.wrap_tzresult @@ -1324,7 +1327,7 @@ let build_proof ~player_client start_tick (game : Game.t) = let inbox = history_proof end end in - let*! proof = Sc_rollup.Proof.produce (module P) game.level in + let*! proof = Sc_rollup.Proof.produce (module P) game.inbox_level in return (WithExceptions.Result.get_ok ~loc:__LOC__ proof) (** [next_move ~number_of_sections ~player_client game] produces diff --git a/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml b/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml index 5fd359984fdd4cec3ac21b2e0d14dd345d85583a..43e9be5ca9b7491b6ffa382359abb9b6520d5717 100644 --- a/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml +++ b/src/proto_alpha/lib_protocol/test/pbt/test_sc_rollup_encoding.ml @@ -51,6 +51,12 @@ let gen_inbox_level = let level = if level = 0l then 1l else level in return (Raw_level_repr.of_int32_exn level) +let gen_start_level = + let open Gen in + let* level = map Int32.abs int32 in + let start_level = Raw_level_repr.of_int32_exn level in + return start_level + let gen_commitment_hash = let open Gen in let* bytes = bytes_fixed_gen Sc_rollup_commitment_repr.Hash.size in @@ -157,13 +163,14 @@ let gen_game = let open Gen in let* turn = gen_player in let* inbox_level = gen_inbox_level in + let* start_level = gen_start_level in let* rollup = gen_rollup in let* inbox_snapshot = gen_inbox_history_proof rollup inbox_level in let* pvm_name = gen_pvm_name in let* game_state = gen_game_state in return Sc_rollup_game_repr. - {turn; inbox_snapshot; level = inbox_level; pvm_name; game_state} + {turn; inbox_snapshot; start_level; inbox_level; pvm_name; game_state} let gen_conflict = let open Gen in 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 edcfe0d3d9083f8d276b868d21cff70e8c4aeadd..24ac72ff51d38110a80e19aca7d11bcc52f52355 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 edcfe0d3d9083f8d276b868d21cff70e8c4aeadd..24ac72ff51d38110a80e19aca7d11bcc52f52355 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 6f18b2be08cf02ce5b60dabea9bdd1ae6d89d1b2..71fd74055b4e68fe5a763bb689ec0c1091be369f 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.047 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.299 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.363 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.506 units (will add 100 for safety) Estimated storage: no bytes added @@ -179,8 +179,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 20 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -220,8 +220,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 25 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.713 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 22 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 22 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 d623b73a84a8cb3c0214d87bc902c21ec0f10bd9..6ce2b1e7c209e3b5493f2c2542fe91fc1578df95 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.047 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.284 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.363 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -220,8 +220,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 25 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 22 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_with_new_content.out b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_with_new_content.out new file mode 100644 index 0000000000000000000000000000000000000000..5e3c969b1b8c8197cff1bb2df05924df7b87b8c2 --- /dev/null +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- arith - refutation games winning strategies (inbox_proof_with_new_content.out @@ -0,0 +1,1301 @@ + +./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 +Node is bootstrapped. +Estimated gas: 3110.449 units (will add 100 for safety) +Estimated storage: 6655 bytes added (will add 20 for safety) +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.00067 + Expected counter: 1 + Gas limit: 3211 + Storage limit: 6675 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.00067 + payload fees(the block proposer) ....... +ꜩ0.00067 + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector Blake2B hash: '0e5751c026e543b2e8ab2eb06099daa1d1e5df47778f7787faab45cdf12fe3a8' + This smart contract rollup origination was successfully applied + Consumed gas: 3110.449 + Storage size: 6655 bytes + Address: [SC_ROLLUP_HASH] + Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ1.66375 + storage fees ........................... +ꜩ1.66375 + + +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.919 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 1 + Gas limit: 1979 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.047 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 3 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 1 + back_pointers = [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.269 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 2 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.269 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 5 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 2 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.348 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 3 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.348 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 7 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 3 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.491 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 4 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.491 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 9 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 4 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.555 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 5 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.555 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 11 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 5 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.570 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 6 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.570 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 13 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 6 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.570 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 7 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.570 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 15 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 7 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.698 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 8 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.698 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 17 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 8 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.762 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 9 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.762 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 19 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 9 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 10 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 21 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 10 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 11 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 23 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 11 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 12 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 25 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 12 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 13 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 27 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 13 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 14 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 29 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 14 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 15 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 31 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 15 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.905 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 16 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.905 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 33 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 16 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.969 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 17 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.969 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 35 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 17 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 18 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 37 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 18 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 19 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 39 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 19 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 20 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 41 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 20 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 21 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 43 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 21 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 22 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 45 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 22 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 23 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 47 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 23 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 24 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 49 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 24 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 25 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 51 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 25 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 26 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 53 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 26 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 27 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 55 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 27 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 28 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 57 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 28 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 29 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 59 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 29 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 30 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 61 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 30 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-sc-rollup-client-alpha rpc get /global/state_hash +"[SC_ROLLUP_PVM_STATE_HASH]" 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 edcfe0d3d9083f8d276b868d21cff70e8c4aeadd..24ac72ff51d38110a80e19aca7d11bcc52f52355 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 edcfe0d3d9083f8d276b868d21cff70e8c4aeadd..24ac72ff51d38110a80e19aca7d11bcc52f52355 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 a94af85c43b70536673c267ec68dbc2d5d0cd8d7..8dfc95e1eb9303b2b0d11179ecae50631115c4d7 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 c3ccf2ada3e00d3be0e2cc63f1367f3592102b6b..0c36653406ad5e6c6fb9e10a69df2018654b48bf 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -220,8 +220,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 25 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 edcfe0d3d9083f8d276b868d21cff70e8c4aeadd..24ac72ff51d38110a80e19aca7d11bcc52f52355 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 edcfe0d3d9083f8d276b868d21cff70e8c4aeadd..24ac72ff51d38110a80e19aca7d11bcc52f52355 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ1.66375 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 1034dc1a93764b9bbe922cbb8667f37270d06168..96330ed1b2a3168fbd9b9a0ff75ebce575720852 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 @@ -295,7 +295,7 @@ This sequence of operations was run: ./tezos-client --wait none timeout dispute on sc rollup '[SC_ROLLUP_HASH]' with '[PUBLIC_KEY_HASH]' from bootstrap1 Node is bootstrapped. -Estimated gas: 8210.868 units (will add 100 for safety) +Estimated gas: 8210.876 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -318,7 +318,7 @@ This sequence of operations was run: First staker (Alice): [PUBLIC_KEY_HASH] Second staker (Bob): [PUBLIC_KEY_HASH] This smart contract rollup refutation timeout was successfully applied - Consumed gas: 8210.868 + Consumed gas: 8210.876 Refutation game status: Game ended: [PUBLIC_KEY_HASH] lost because: timeout Balance updates: Frozen_bonds([PUBLIC_KEY_HASH],[SC_ROLLUP_HASH]) ... -ꜩ10000 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 23c3da9b5e1c1eb0e74f5ad96118ea6e88b6fb20..75d34b9ddb6f112dfec9da44c70a0c74bdbfb36c 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 @@ -107,7 +107,7 @@ This sequence of operations was run: ./tezos-client --wait none timeout dispute on sc rollup '[SC_ROLLUP_HASH]' with '[PUBLIC_KEY_HASH]' from bootstrap1 Node is bootstrapped. -Estimated gas: 6460.690 units (will add 100 for safety) +Estimated gas: 6460.698 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -130,7 +130,7 @@ This sequence of operations was run: First staker (Alice): [PUBLIC_KEY_HASH] Second staker (Bob): [PUBLIC_KEY_HASH] This smart contract rollup refutation timeout was successfully applied - Consumed gas: 6460.690 + Consumed gas: 6460.698 Refutation game status: Game ended: [PUBLIC_KEY_HASH] lost because: timeout Balance updates: Frozen_bonds([PUBLIC_KEY_HASH],[SC_ROLLUP_HASH]) ... -ꜩ10000 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 f34dd6da3875727eff429bd858eb66cef27851c3..59a61cae334008b1fa79e7a11cdfa84f18cd3b0f 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 f34dd6da3875727eff429bd858eb66cef27851c3..59a61cae334008b1fa79e7a11cdfa84f18cd3b0f 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 709de1a7177b1b52254997749dd96a08a6792ab4..fdd8b4544989ad46e80c6206c48c1b95dc831660 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.047 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.299 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.363 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.506 units (will add 100 for safety) Estimated storage: no bytes added @@ -179,8 +179,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 20 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -220,8 +220,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 25 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.713 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 22 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 22 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 17b565bfad0280a110e9610976eff55d3013707e..a531c98ee5aae281a8ce8608d5895aed9ee3a2ed 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.047 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.284 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.363 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -220,8 +220,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 25 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 22 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_with_new_co.out b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_with_new_co.out new file mode 100644 index 0000000000000000000000000000000000000000..8618b0295e0e0a7dcfdb3ce260d5e9492ee13300 --- /dev/null +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- wasm_2_0_0 - refutation games winning strategies (inbox_proof_with_new_co.out @@ -0,0 +1,1301 @@ + +./tezos-client --wait none originate sc rollup from bootstrap1 of kind wasm_2_0_0 of type string booting with 010fa03030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303030303000d5024ff4c33df62141bd485af4154641aa9220c5dede9aed006eb5d3c88bff3b --burn-cap 9999999 +Node is bootstrapped. +Estimated gas: 3126.593 units (will add 100 for safety) +Estimated storage: 10691 bytes added (will add 20 for safety) +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.004713 + Expected counter: 1 + Gas limit: 3227 + Storage limit: 10711 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.004713 + payload fees(the block proposer) ....... +ꜩ0.004713 + Smart contract rollup origination: + Kind: wasm_2_0_0 + Parameter type: string + Boot sector Blake2B hash: '789431137a40057a39867cbc5cd7f984139360559c655c0508821b9be8047a02' + This smart contract rollup origination was successfully applied + Consumed gas: 3126.593 + Storage size: 10691 bytes + Address: [SC_ROLLUP_HASH] + Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ2.67275 + storage fees ........................... +ꜩ2.67275 + + +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1878.919 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 1 + Gas limit: 1979 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.047 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 3 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 1 + back_pointers = [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.269 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 2 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.269 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 5 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 2 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.348 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 3 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.348 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 7 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 3 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.491 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 4 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.491 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 9 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 4 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.555 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 5 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.555 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 11 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 2 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 5 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.570 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 6 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.570 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 13 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 6 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.570 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 7 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.570 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 15 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 7 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.698 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 8 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.698 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 17 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 8 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.762 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 9 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.762 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 19 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 9 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 10 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 21 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 10 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 11 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 23 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 11 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 12 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 25 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 12 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 13 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 27 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 13 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 14 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 29 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 14 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.777 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 15 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.777 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 31 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 22 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 15 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.905 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 16 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.905 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 33 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 16 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.969 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 17 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.969 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 35 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 17 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 18 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 37 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 18 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 19 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 39 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 19 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 20 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 41 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 32 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 20 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 21 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 43 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 21 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 22 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 45 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 22 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 23 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 47 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 23 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 24 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 49 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 24 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 25 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 51 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 42 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 25 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 26 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 53 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 26 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 27 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 55 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 27 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 28 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 57 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 28 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 29 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 59 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 29 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' +Node is bootstrapped. +Estimated gas: 1879.984 units (will add 100 for safety) +Estimated storage: no bytes added +Operation successfully injected in the node. +Operation hash is '[OPERATION_HASH]' +NOT waiting for the operation to be included. +Use command + tezos-client wait for [OPERATION_HASH] to be included --confirmations 1 --branch [BLOCK_HASH] +and/or an external block explorer to make sure that it has been included. +This sequence of operations was run: + Manager signed operations: + From: [PUBLIC_KEY_HASH] + Fee to the baker: ꜩ0.000516 + Expected counter: 30 + Gas limit: 1980 + Storage limit: 0 bytes + Balance updates: + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] + This smart contract rollup messages submission was successfully applied + Consumed gas: 1879.984 + Resulting inbox state: { rollup = [SC_ROLLUP_HASH] + level = 61 + current messages hash = [SC_ROLLUP_INBOX_HASH] + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 52 + message_counter = 5 + old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] + + content = [SC_ROLLUP_INBOX_HASH] + index = 30 + back_pointers = [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + [SC_ROLLUP_INBOX_HASH] + + } + + +./tezos-sc-rollup-client-alpha rpc get /global/state_hash +"[SC_ROLLUP_PVM_STATE_HASH]" 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 f34dd6da3875727eff429bd858eb66cef27851c3..59a61cae334008b1fa79e7a11cdfa84f18cd3b0f 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 f34dd6da3875727eff429bd858eb66cef27851c3..59a61cae334008b1fa79e7a11cdfa84f18cd3b0f 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 7c8a19b5173fdb506dd53990825ebe8eefbe4824..a32c0f8aa6b71d747a36a86e5a51afcf96e4f3b0 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 8ab2070ec36c3fd794c1a827e8a55945edbbe5c2..38cddef2f99bca254987b7a9d16c1b1c61901285 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -220,8 +220,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 25 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 f34dd6da3875727eff429bd858eb66cef27851c3..59a61cae334008b1fa79e7a11cdfa84f18cd3b0f 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] 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 f34dd6da3875727eff429bd858eb66cef27851c3..59a61cae334008b1fa79e7a11cdfa84f18cd3b0f 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 @@ -33,7 +33,7 @@ This sequence of operations was run: storage fees ........................... +ꜩ2.67275 -./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added @@ -72,7 +72,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added @@ -112,7 +112,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added @@ -152,7 +152,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added @@ -193,7 +193,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added @@ -234,7 +234,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -261,8 +261,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 30 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 5 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -275,7 +275,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added @@ -302,8 +302,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 35 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 10 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -316,7 +316,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added @@ -343,8 +343,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 40 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 15 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -358,7 +358,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added @@ -385,8 +385,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 45 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 20 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] @@ -400,7 +400,7 @@ This sequence of operations was run: } -./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap2 to '[SC_ROLLUP_HASH]' +./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap3 to '[SC_ROLLUP_HASH]' Node is bootstrapped. Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added @@ -427,8 +427,8 @@ This sequence of operations was run: Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] - nb_messages_in_commitment_period = 50 - starting_level_of_current_commitment_period = 2 + nb_messages_in_commitment_period = 25 + starting_level_of_current_commitment_period = 12 message_counter = 5 old_levels_messages = hash : [SC_ROLLUP_INBOX_HASH] diff --git a/tezt/tests/sc_rollup.ml b/tezt/tests/sc_rollup.ml index 568c7e7a659dfe6de134445461f259fa5a36bc4e..81cb96bd7d559d3dc783b93accc1f4d781aa6997 100644 --- a/tezt/tests/sc_rollup.ml +++ b/tezt/tests/sc_rollup.ml @@ -511,18 +511,13 @@ let test_rollup_get_chain_block_context_sc_rollup_last_cemented_commitment_hash_ the Tezos node. Then we can observe that the messages are included in the inbox. *) -let send_message client sc_rollup msg = +let send_message ?(src = Constant.bootstrap2.alias) client sc_rollup msg = let* () = - Client.Sc_rollup.send_message - ~hooks - ~src:Constant.bootstrap2.alias - ~dst:sc_rollup - ~msg - client + Client.Sc_rollup.send_message ~hooks ~src ~dst:sc_rollup ~msg client in Client.bake_for_and_wait client -let send_messages ?batch_size n sc_rollup client = +let send_messages ?src ?batch_size n sc_rollup client = let messages = List.map (fun i -> @@ -533,14 +528,14 @@ let send_messages ?batch_size n sc_rollup client = "text:" ^ Ezjsonm.to_string json) (range 1 n) in - Lwt_list.iter_s (fun msg -> send_message client sc_rollup msg) messages + Lwt_list.iter_s (fun msg -> send_message ?src client sc_rollup msg) messages let to_text_messages_arg msgs = let json = Ezjsonm.list Ezjsonm.string msgs in "text:" ^ Ezjsonm.to_string ~minify:true json -let send_text_messages client sc_rollup msgs = - send_message client sc_rollup (to_text_messages_arg msgs) +let send_text_messages ?src client sc_rollup msgs = + send_message ?src client sc_rollup (to_text_messages_arg msgs) let parse_inbox json = let go () = @@ -2496,7 +2491,12 @@ let test_refutation_scenario ?commitment_period ?challenge_window variant ~kind consume_inputs (i + 1) all else let* () = - Lwt_list.iter_s (send_text_messages client sc_rollup_address) inputs + Lwt_list.iter_s + (send_text_messages + ~src:Constant.bootstrap3.alias + client + sc_rollup_address) + inputs in let* () = Client.bake_for_and_wait client in consume_inputs (i + 1) next_batches @@ -2543,10 +2543,15 @@ let inputs_for n = let test_refutation protocols ~kind = let challenge_window = 10 in + let commitment_period = 10 in [ ("inbox_proof_at_genesis", ("3 0 0", inputs_for 10, 80, [], [])); ("pvm_proof_at_genesis", ("3 0 1", inputs_for 10, 80, [], [])); ("inbox_proof", ("5 0 0", inputs_for 10, 80, [], [])); + ("inbox_proof_with_new_content", ("5 0 0", inputs_for 30, 80, [], [])); + (* In "inbox_proof_with_new_content" we add messages after the commitment + period so the current inbox is not equal to the inbox snapshot-ted at the + game creation. *) ("inbox_proof_one_empty_level", ("6 0 0", inputs_for 10, 80, [2], [])); ( "inbox_proof_many_empty_levels", ("9 0 0", inputs_for 10, 80, [2; 3; 4], []) ); @@ -2560,6 +2565,7 @@ let test_refutation protocols ~kind = test_refutation_scenario ~kind ~challenge_window + ~commitment_period variant inputs protocols)