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 7077617212618c55660f17e75fbcacc3053740d8..95d11924bf3ddf11e2e869ec14e054b8cfef99f9 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.ml @@ -28,83 +28,105 @@ open Sc_rollup_repr type player = Alice | Bob -type t = { - turn : player; - inbox_snapshot : Sc_rollup_inbox_repr.t; - level : Raw_level_repr.t; - pvm_name : string; - dissection : (State_hash.t option * Sc_rollup_tick_repr.t) list; -} - -let player_encoding = +module V1 = struct + type t = { + turn : player; + inbox_snapshot : Sc_rollup_inbox_repr.t; + level : Raw_level_repr.t; + pvm_name : string; + dissection : (State_hash.t option * Sc_rollup_tick_repr.t) list; + } + + let player_encoding = + let open Data_encoding in + union + ~tag_size:`Uint8 + [ + case + ~title:"Alice" + (Tag 0) + unit + (function Alice -> Some () | _ -> None) + (fun () -> Alice); + case + ~title:"Bob" + (Tag 1) + unit + (function Bob -> Some () | _ -> None) + (fun () -> Bob); + ] + + let string_of_player = function Alice -> "alice" | Bob -> "bob" + + let pp_player ppf player = Format.fprintf ppf "%s" (string_of_player player) + + let opponent = function Alice -> Bob | Bob -> Alice + + let encoding = + let open Data_encoding in + conv + (fun {turn; inbox_snapshot; level; pvm_name; dissection} -> + (turn, inbox_snapshot, level, pvm_name, dissection)) + (fun (turn, inbox_snapshot, level, pvm_name, dissection) -> + {turn; inbox_snapshot; level; pvm_name; dissection}) + (obj5 + (req "turn" player_encoding) + (req "inbox_snapshot" Sc_rollup_inbox_repr.encoding) + (req "level" Raw_level_repr.encoding) + (req "pvm_name" string) + (req + "dissection" + (list + (tup2 (option State_hash.encoding) Sc_rollup_tick_repr.encoding)))) + + let pp_dissection ppf d = + Format.pp_print_list + ~pp_sep:(fun ppf () -> Format.pp_print_string ppf ";\n") + (fun ppf (state, tick) -> + Format.fprintf + ppf + " %a @ %a" + (Format.pp_print_option State_hash.pp) + state + Sc_rollup_tick_repr.pp + tick) + ppf + d + + let pp ppf game = + Format.fprintf + ppf + "[%a] %a playing; inbox snapshot = %a; level = %a; pvm_name = %s;" + pp_dissection + game.dissection + pp_player + game.turn + Sc_rollup_inbox_repr.pp + game.inbox_snapshot + Raw_level_repr.pp + game.level + game.pvm_name +end + +type versioned = V1 of V1.t + +let versioned_encoding = let open Data_encoding in union - ~tag_size:`Uint8 [ case - ~title:"Alice" + ~title:"V1" (Tag 0) - unit - (function Alice -> Some () | _ -> None) - (fun () -> Alice); - case - ~title:"Bob" - (Tag 1) - unit - (function Bob -> Some () | _ -> None) - (fun () -> Bob); + V1.encoding + (function V1 game -> Some game) + (fun game -> V1 game); ] -let string_of_player = function Alice -> "alice" | Bob -> "bob" - -let pp_player ppf player = Format.fprintf ppf "%s" (string_of_player player) +include V1 -let opponent = function Alice -> Bob | Bob -> Alice +let of_versioned = function V1 game -> game [@@inline] -let encoding = - let open Data_encoding in - conv - (fun {turn; inbox_snapshot; level; pvm_name; dissection} -> - (turn, inbox_snapshot, level, pvm_name, dissection)) - (fun (turn, inbox_snapshot, level, pvm_name, dissection) -> - {turn; inbox_snapshot; level; pvm_name; dissection}) - (obj5 - (req "turn" player_encoding) - (req "inbox_snapshot" Sc_rollup_inbox_repr.encoding) - (req "level" Raw_level_repr.encoding) - (req "pvm_name" string) - (req - "dissection" - (list - (tup2 (option State_hash.encoding) Sc_rollup_tick_repr.encoding)))) - -let pp_dissection ppf d = - Format.pp_print_list - ~pp_sep:(fun ppf () -> Format.pp_print_string ppf ";\n") - (fun ppf (state, tick) -> - Format.fprintf - ppf - " %a @ %a" - (Format.pp_print_option State_hash.pp) - state - Sc_rollup_tick_repr.pp - tick) - ppf - d - -let pp ppf game = - Format.fprintf - ppf - "[%a] %a playing; inbox snapshot = %a; level = %a; pvm_name = %s;" - pp_dissection - game.dissection - pp_player - game.turn - Sc_rollup_inbox_repr.pp - game.inbox_snapshot - Raw_level_repr.pp - game.level - game.pvm_name +let to_versioned game = V1 game [@@inline] module Index = struct type t = {alice : Staker.t; bob : Staker.t} 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 2df0a7415e130f55c484788da37b486eee7d46b7..7f6b0d6aa09b284a8a6dea77e54a43be04379e56 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_game_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_game_repr.mli @@ -129,8 +129,8 @@ open Sc_rollup_repr represent the first and second player in the pair respectively. *) type player = Alice | Bob -(** - A game state is characterized by: +module V1 : sig + (** A game state is characterized by: - [turn], the player that must provide the next move. @@ -158,26 +158,32 @@ type player = Alice | Bob - [dissection] must contain at least 3 values - the first state hash value in [dissection] must not be [None] - [inbox_snapshot] never changes once the game is created -*) -type t = { - turn : player; - inbox_snapshot : Sc_rollup_inbox_repr.t; - level : Raw_level_repr.t; - pvm_name : string; - dissection : (State_hash.t option * Sc_rollup_tick_repr.t) list; -} + *) + type t = { + turn : player; + inbox_snapshot : Sc_rollup_inbox_repr.t; + level : Raw_level_repr.t; + pvm_name : string; + dissection : (State_hash.t option * Sc_rollup_tick_repr.t) list; + } + + (** Return the other player *) + val opponent : player -> player -(** Return the other player *) -val opponent : player -> player + val encoding : t Data_encoding.t -val encoding : t Data_encoding.t + val pp_dissection : + Format.formatter -> + (Sc_rollup_repr.State_hash.t option * Sc_rollup_tick_repr.t) list -> + unit -val pp_dissection : - Format.formatter -> - (Sc_rollup_repr.State_hash.t option * Sc_rollup_tick_repr.t) list -> - unit + val pp : Format.formatter -> t -> unit +end + +(** Versioning, see {!Sc_rollup_data_version_sig.S} for more information. *) +include Sc_rollup_data_version_sig.S with type t = V1.t -val pp : Format.formatter -> t -> unit +include module type of V1 with type t = V1.t module Index : sig type t = private {alice : Staker.t; bob : Staker.t} diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml index 6ac78a7131aee8effe1c8845fb2ece63927d5190..1132b6c857f6f40e614fbb8649e9c3d51f60f87f 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.ml @@ -149,7 +149,8 @@ let pp_history_proof fmt cell = (Format.pp_print_list Hash.pp) (Skip_list.back_pointers cell) -(* +module V1 = struct + (* At a given level, an inbox is composed of metadata of type [t] and [current_messages], a [tree] representing the messages of the current level @@ -186,49 +187,21 @@ let pp_history_proof fmt cell = messages. *) -type t = { - rollup : Sc_rollup_repr.t; - level : Raw_level_repr.t; - nb_available_messages : int64; - nb_messages_in_commitment_period : int64; - starting_level_of_current_commitment_period : Raw_level_repr.t; - message_counter : Z.t; - (* Lazy to avoid hashing O(n^2) time in [add_external_messages] *) - current_messages_hash : unit -> Hash.t; - old_levels_messages : history_proof; -} - -let equal inbox1 inbox2 = - (* To be robust to addition of fields in [t]. *) - let { - rollup; - level; - nb_available_messages; - nb_messages_in_commitment_period; - starting_level_of_current_commitment_period; - message_counter; - current_messages_hash; - old_levels_messages; - } = - inbox1 - in - Sc_rollup_repr.Address.equal rollup inbox2.rollup - && Raw_level_repr.equal level inbox2.level - && Compare.Int64.(equal nb_available_messages inbox2.nb_available_messages) - && Compare.Int64.( - equal - nb_messages_in_commitment_period - inbox2.nb_messages_in_commitment_period) - && Raw_level_repr.( - equal - starting_level_of_current_commitment_period - inbox2.starting_level_of_current_commitment_period) - && Z.equal message_counter inbox2.message_counter - && Hash.equal (current_messages_hash ()) (inbox2.current_messages_hash ()) - && equal_history_proof old_levels_messages inbox2.old_levels_messages - -let pp fmt - { + type t = { + rollup : Sc_rollup_repr.t; + level : Raw_level_repr.t; + nb_available_messages : int64; + nb_messages_in_commitment_period : int64; + starting_level_of_current_commitment_period : Raw_level_repr.t; + message_counter : Z.t; + (* Lazy to avoid hashing O(n^2) time in [add_external_messages] *) + current_messages_hash : unit -> Hash.t; + old_levels_messages : history_proof; + } + + let equal inbox1 inbox2 = + (* To be robust to addition of fields in [t]. *) + let { rollup; level; nb_available_messages; @@ -238,9 +211,37 @@ let pp fmt current_messages_hash; old_levels_messages; } = - Format.fprintf - fmt - {| + inbox1 + in + Sc_rollup_repr.Address.equal rollup inbox2.rollup + && Raw_level_repr.equal level inbox2.level + && Compare.Int64.(equal nb_available_messages inbox2.nb_available_messages) + && Compare.Int64.( + equal + nb_messages_in_commitment_period + inbox2.nb_messages_in_commitment_period) + && Raw_level_repr.( + equal + starting_level_of_current_commitment_period + inbox2.starting_level_of_current_commitment_period) + && Z.equal message_counter inbox2.message_counter + && Hash.equal (current_messages_hash ()) (inbox2.current_messages_hash ()) + && equal_history_proof old_levels_messages inbox2.old_levels_messages + + let pp fmt + { + rollup; + level; + nb_available_messages; + nb_messages_in_commitment_period; + starting_level_of_current_commitment_period; + message_counter; + current_messages_hash; + old_levels_messages; + } = + Format.fprintf + fmt + {| rollup = %a level = %a current messages hash = %a @@ -250,114 +251,137 @@ let pp fmt message_counter = %a old_levels_messages = %a |} - Sc_rollup_repr.Address.pp - rollup - Raw_level_repr.pp - level - Hash.pp - (current_messages_hash ()) - nb_available_messages - (Int64.to_string nb_messages_in_commitment_period) - Raw_level_repr.pp - starting_level_of_current_commitment_period - Z.pp_print - message_counter - pp_history_proof - old_levels_messages - -let inbox_level inbox = inbox.level - -let old_levels_messages_encoding = - Skip_list.encoding Hash.encoding Hash.encoding + Sc_rollup_repr.Address.pp + rollup + Raw_level_repr.pp + level + Hash.pp + (current_messages_hash ()) + nb_available_messages + (Int64.to_string nb_messages_in_commitment_period) + Raw_level_repr.pp + starting_level_of_current_commitment_period + Z.pp_print + message_counter + pp_history_proof + old_levels_messages + + let inbox_level inbox = inbox.level + + let old_levels_messages_encoding = + Skip_list.encoding Hash.encoding Hash.encoding -let encoding = - Data_encoding.( - conv - (fun { - rollup; - message_counter; - nb_available_messages; - nb_messages_in_commitment_period; - starting_level_of_current_commitment_period; - level; - current_messages_hash; - old_levels_messages; - } -> - ( rollup, - message_counter, - nb_available_messages, - nb_messages_in_commitment_period, - starting_level_of_current_commitment_period, - level, - current_messages_hash (), - old_levels_messages )) - (fun ( rollup, - message_counter, - nb_available_messages, - nb_messages_in_commitment_period, - starting_level_of_current_commitment_period, - level, - current_messages_hash, - old_levels_messages ) -> - { - rollup; - message_counter; - nb_available_messages; - nb_messages_in_commitment_period; - starting_level_of_current_commitment_period; - level; - current_messages_hash = (fun () -> current_messages_hash); - old_levels_messages; - }) - (obj8 - (req "rollup" Sc_rollup_repr.encoding) - (req "message_counter" n) - (req "nb_available_messages" int64) - (req "nb_messages_in_commitment_period" int64) - (req - "starting_level_of_current_commitment_period" - Raw_level_repr.encoding) - (req "level" Raw_level_repr.encoding) - (req "current_messages_hash" Hash.encoding) - (req "old_levels_messages" old_levels_messages_encoding))) - -let number_of_available_messages inbox = Z.of_int64 inbox.nb_available_messages - -let number_of_messages_during_commitment_period inbox = - inbox.nb_messages_in_commitment_period - -let start_new_commitment_period inbox level = - { - inbox with - starting_level_of_current_commitment_period = level; - nb_messages_in_commitment_period = 0L; - } + let encoding = + Data_encoding.( + conv + (fun { + rollup; + message_counter; + nb_available_messages; + nb_messages_in_commitment_period; + starting_level_of_current_commitment_period; + level; + current_messages_hash; + old_levels_messages; + } -> + ( rollup, + message_counter, + nb_available_messages, + nb_messages_in_commitment_period, + starting_level_of_current_commitment_period, + level, + current_messages_hash (), + old_levels_messages )) + (fun ( rollup, + message_counter, + nb_available_messages, + nb_messages_in_commitment_period, + starting_level_of_current_commitment_period, + level, + current_messages_hash, + old_levels_messages ) -> + { + rollup; + message_counter; + nb_available_messages; + nb_messages_in_commitment_period; + starting_level_of_current_commitment_period; + level; + current_messages_hash = (fun () -> current_messages_hash); + old_levels_messages; + }) + (obj8 + (req "rollup" Sc_rollup_repr.encoding) + (req "message_counter" n) + (req "nb_available_messages" int64) + (req "nb_messages_in_commitment_period" int64) + (req + "starting_level_of_current_commitment_period" + Raw_level_repr.encoding) + (req "level" Raw_level_repr.encoding) + (req "current_messages_hash" Hash.encoding) + (req "old_levels_messages" old_levels_messages_encoding))) + + let number_of_available_messages inbox = + Z.of_int64 inbox.nb_available_messages + + let number_of_messages_during_commitment_period inbox = + inbox.nb_messages_in_commitment_period + + let start_new_commitment_period inbox level = + { + inbox with + starting_level_of_current_commitment_period = level; + nb_messages_in_commitment_period = 0L; + } -let starting_level_of_current_commitment_period inbox = - inbox.starting_level_of_current_commitment_period - -let no_messages_hash = Hash.hash_bytes [Bytes.empty] - -let empty rollup level = - { - rollup; - level; - message_counter = Z.zero; - nb_available_messages = 0L; - nb_messages_in_commitment_period = 0L; - starting_level_of_current_commitment_period = level; - current_messages_hash = (fun () -> no_messages_hash); - old_levels_messages = Skip_list.genesis no_messages_hash; - } + let starting_level_of_current_commitment_period inbox = + inbox.starting_level_of_current_commitment_period + + let no_messages_hash = Hash.hash_bytes [Bytes.empty] + + let empty rollup level = + { + rollup; + level; + message_counter = Z.zero; + nb_available_messages = 0L; + nb_messages_in_commitment_period = 0L; + starting_level_of_current_commitment_period = level; + current_messages_hash = (fun () -> no_messages_hash); + old_levels_messages = Skip_list.genesis no_messages_hash; + } + + let consume_n_messages n ({nb_available_messages; _} as inbox) : + t option tzresult = + let n = Int64.of_int32 n in + if Compare.Int64.(n < 0L) then + error (Invalid_number_of_messages_to_consume n) + else if Compare.Int64.(n > nb_available_messages) then ok None + else + let nb_available_messages = Int64.(sub nb_available_messages n) in + ok (Some {inbox with nb_available_messages}) +end + +type versioned = V1 of V1.t + +let versioned_encoding = + let open Data_encoding in + union + [ + case + ~title:"V1" + (Tag 0) + V1.encoding + (function V1 inbox -> Some inbox) + (fun inbox -> V1 inbox); + ] + +include V1 + +let of_versioned = function V1 inbox -> inbox [@@inline] -let consume_n_messages n ({nb_available_messages; _} as inbox) : - t option tzresult = - let n = Int64.of_int32 n in - if Compare.Int64.(n < 0L) then error (Invalid_number_of_messages_to_consume n) - else if Compare.Int64.(n > nb_available_messages) then ok None - else - let nb_available_messages = Int64.(sub nb_available_messages n) in - ok (Some {inbox with nb_available_messages}) +let to_versioned inbox = V1 inbox [@@inline] let key_of_message = Data_encoding.Binary.to_string_exn Data_encoding.z diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli index 9b322fbdf989f8b5ef88a9460206fd399af9258d..96ca17e61fd14344b1dca61f1689a9c65cc6ea14 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_repr.mli @@ -117,49 +117,56 @@ *) -(** The type of the inbox for a smart-contract rollup as stored +module V1 : sig + (** The type of the inbox for a smart-contract rollup as stored by the protocol in the context. Values that inhabit this type only act as fingerprint for inboxes. Inbox contents is represented using {!Raw_context.TREE.tree}s. (See below.) *) -type t + type t -val pp : Format.formatter -> t -> unit + val pp : Format.formatter -> t -> unit -val equal : t -> t -> bool + val equal : t -> t -> bool -val encoding : t Data_encoding.t + val encoding : t Data_encoding.t -(** [empty level] is an inbox started at some given [level] with no + (** [empty level] is an inbox started at some given [level] with no message at all. *) -val empty : Sc_rollup_repr.t -> Raw_level_repr.t -> t + val empty : Sc_rollup_repr.t -> Raw_level_repr.t -> t -(** [inbox_level inbox] returns the maximum level of message insertion in + (** [inbox_level inbox] returns the maximum level of message insertion in [inbox] or its initial level. *) -val inbox_level : t -> Raw_level_repr.t + val inbox_level : t -> Raw_level_repr.t -(** [number_of_available_messages inbox] returns the number of + (** [number_of_available_messages inbox] returns the number of messages that can be consumed in [inbox]. *) -val number_of_available_messages : t -> Z.t + val number_of_available_messages : t -> Z.t -(** [number_of_messages_during_commitment_period inbox] returns the + (** [number_of_messages_during_commitment_period inbox] returns the number of messages added in the inbox since the beginning of the current commitment period. *) -val number_of_messages_during_commitment_period : t -> int64 + val number_of_messages_during_commitment_period : t -> int64 -(** [start_new_commitment_period inbox level] marks the beginning of a + (** [start_new_commitment_period inbox level] marks the beginning of a new commitment period at some [level]. *) -val start_new_commitment_period : t -> Raw_level_repr.t -> t + val start_new_commitment_period : t -> Raw_level_repr.t -> t -(** [starting_level_of_current_commitment_period inbox] returns the + (** [starting_level_of_current_commitment_period inbox] returns the level at the beginning of a current commitment period. *) -val starting_level_of_current_commitment_period : t -> Raw_level_repr.t + val starting_level_of_current_commitment_period : t -> Raw_level_repr.t + + (** [consume_n_messages n inbox] returns an inbox where [n] messages have + been consumed, or [None] if there are strictly less than [n] messages + available in [inbox]. *) + val consume_n_messages : int32 -> t -> t option tzresult +end + +(** Versioning, see {!Sc_rollup_data_version_sig.S} for more information. *) +include Sc_rollup_data_version_sig.S with type t = V1.t -(** [consume_n_messages n inbox] returns an inbox where [n] messages have - been consumed, or [None] if there are strictly less than [n] messages - available in [inbox]. *) -val consume_n_messages : int32 -> t -> t option tzresult +include module type of V1 with type t = V1.t module Hash : S.HASH diff --git a/src/proto_alpha/lib_protocol/storage.ml b/src/proto_alpha/lib_protocol/storage.ml index f5f916ec2278e8c48213a5fd88676dfe9996293e..8e6ec9675905ecdefe43feb21d23496c736eefd7 100644 --- a/src/proto_alpha/lib_protocol/storage.ml +++ b/src/proto_alpha/lib_protocol/storage.ml @@ -1490,26 +1490,36 @@ module Sc_rollup = struct end)) (Make_index (Sc_rollup_repr.Index)) - module Make_versioned (Versioned_value : sig - val name : string + module Make_versioned + (Versioned_value : Sc_rollup_data_version_sig.S) (Data_storage : sig + type context - module Index : Storage_description.INDEX + type key - include Sc_rollup_data_version_sig.S - end) = - struct - include - Make_indexed_carbonated_data_storage - (Make_subcontext (Registered) (Indexed_context.Raw_context) - (struct - let name = [Versioned_value.name] - end)) - (Make_index (Versioned_value.Index)) - (struct - type t = Versioned_value.versioned + type value = Versioned_value.versioned - let encoding = Versioned_value.versioned_encoding - end) + val get : context -> key -> (Raw_context.t * value) tzresult Lwt.t + + val find : + context -> key -> (Raw_context.t * value option) tzresult Lwt.t + + val update : + context -> key -> value -> (Raw_context.t * int) tzresult Lwt.t + + val init : + context -> key -> value -> (Raw_context.t * int) tzresult Lwt.t + + val add : + context -> key -> value -> (Raw_context.t * int * bool) tzresult Lwt.t + + val add_or_remove : + context -> + key -> + value option -> + (Raw_context.t * int * bool) tzresult Lwt.t + end) = + struct + include Data_storage type value = Versioned_value.t @@ -1578,17 +1588,22 @@ module Sc_rollup = struct let encoding = Raw_level_repr.encoding end) - module Inbox = + module Inbox_versioned = Indexed_context.Make_carbonated_map (struct let name = ["inbox"] end) (struct - type t = Sc_rollup_inbox_repr.t + type t = Sc_rollup_inbox_repr.versioned - let encoding = Sc_rollup_inbox_repr.encoding + let encoding = Sc_rollup_inbox_repr.versioned_encoding end) + module Inbox = struct + include Inbox_versioned + include Make_versioned (Sc_rollup_inbox_repr) (Inbox_versioned) + end + module Last_cemented_commitment = Indexed_context.Make_carbonated_map (struct @@ -1624,12 +1639,23 @@ module Sc_rollup = struct let encoding = Data_encoding.int32 end) - module Commitments = Make_versioned (struct - include Sc_rollup_commitment_repr - module Index = Hash + module Commitments_versioned = + Make_indexed_carbonated_data_storage + (Make_subcontext (Registered) (Indexed_context.Raw_context) + (struct + let name = ["commitments"] + end)) + (Make_index (Sc_rollup_commitment_repr.Hash)) + (struct + type t = Sc_rollup_commitment_repr.versioned + + let encoding = Sc_rollup_commitment_repr.versioned_encoding + end) - let name = "commitments" - end) + module Commitments = struct + include Commitments_versioned + include Make_versioned (Sc_rollup_commitment_repr) (Commitments_versioned) + end module Commitment_stake_count = Make_indexed_carbonated_data_storage @@ -1657,7 +1683,7 @@ module Sc_rollup = struct let encoding = Raw_level_repr.encoding end) - module Game = + module Game_versioned = Make_indexed_carbonated_data_storage (Make_subcontext (Registered) (Indexed_context.Raw_context) (struct @@ -1665,11 +1691,16 @@ module Sc_rollup = struct end)) (Make_index (Sc_rollup_game_repr.Index)) (struct - type t = Sc_rollup_game_repr.t + type t = Sc_rollup_game_repr.versioned - let encoding = Sc_rollup_game_repr.encoding + let encoding = Sc_rollup_game_repr.versioned_encoding end) + module Game = struct + include Game_versioned + include Make_versioned (Sc_rollup_game_repr) (Game_versioned) + end + module Game_timeout = Make_indexed_carbonated_data_storage (Make_subcontext (Registered) (Indexed_context.Raw_context) diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out index d14df54249200d4c1cc7438c11806611d5c0ef25..b51b2faf44b9b993d2f18c5ab57fc600a16e0df1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,16 +15,16 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out index 5add84b104cfc5785c127510550762a7c0137918..0b1ddbd655591b61b0a074a2708e1655ababda6f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6553 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.00044 Expected counter: 1 Gas limit: 1901 - Storage limit: 6572 bytes + Storage limit: 6573 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00044 payload fees(the block proposer) ....... +ꜩ0.00044 Originate smart contract rollup of kind arith and type unit with boot sector '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6552 bytes + Consumed gas: 1800.800 + Storage size: 6553 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 + [PUBLIC_KEY_HASH] ... -ꜩ1.63825 + storage fees ........................... +ꜩ1.63825 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' @@ -34,7 +34,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["3130202b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -54,7 +54,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -76,8 +76,8 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with 31 --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6542 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6543 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. @@ -90,18 +90,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.00043 Expected counter: 3 Gas limit: 1901 - Storage limit: 6562 bytes + Storage limit: 6563 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00043 payload fees(the block proposer) ....... +ꜩ0.00043 Originate smart contract rollup of kind arith and type unit with boot sector '31' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6542 bytes + Consumed gas: 1800.800 + Storage size: 6543 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6355 - storage fees ........................... +ꜩ1.6355 + [PUBLIC_KEY_HASH] ... -ꜩ1.63575 + storage fees ........................... +ꜩ1.63575 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' @@ -109,7 +109,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["3130202b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,7 +129,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get initial level of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get initial level of a sc rollup.out index d14df54249200d4c1cc7438c11806611d5c0ef25..b51b2faf44b9b993d2f18c5ab57fc600a16e0df1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get initial level of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get initial level of a sc rollup.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,16 +15,16 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out index d14df54249200d4c1cc7438c11806611d5c0ef25..b51b2faf44b9b993d2f18c5ab57fc600a16e0df1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,16 +15,16 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out index d14df54249200d4c1cc7438c11806611d5c0ef25..b51b2faf44b9b993d2f18c5ab57fc600a16e0df1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,16 +15,16 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out index dc3c06d0d051e054c4652d8861524484304d3eca..c72944ce975e9a271919b3fd3cd8c65de9ce6d8c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,24 +15,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -45,24 +45,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 2 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -75,24 +75,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 3 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -105,24 +105,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 4 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -135,24 +135,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 5 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -165,24 +165,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 6 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -195,24 +195,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 7 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -225,24 +225,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 8 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -255,24 +255,24 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 9 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -285,16 +285,16 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 10 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out index 2676b7237e3ea8dfbedeed0bda4889abf69c1041..9248e4b87c96dee9473bbb8cb6cd2ea8e3fbd85e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' @@ -40,7 +40,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["31","36","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.746 units (will add 100 for safety) +Estimated gas: 1652.752 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -60,7 +60,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000463 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.874 + Consumed gas: 1652.880 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -91,7 +91,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["32","38","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.968 units (will add 100 for safety) +Estimated gas: 1652.974 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -111,7 +111,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000463 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.096 + Consumed gas: 1653.102 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -143,7 +143,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["33","3130","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.205 units (will add 100 for safety) +Estimated gas: 1653.211 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -163,7 +163,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000465 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.205 + Consumed gas: 1653.211 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["34","3132","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.205 units (will add 100 for safety) +Estimated gas: 1653.211 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -215,7 +215,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000465 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.333 + Consumed gas: 1653.339 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 @@ -248,7 +248,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["35","3134","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.412 units (will add 100 for safety) +Estimated gas: 1653.418 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -268,7 +268,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000465 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.412 + Consumed gas: 1653.418 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 7 @@ -301,7 +301,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["36","3136","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.412 units (will add 100 for safety) +Estimated gas: 1653.418 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -321,7 +321,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000465 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.412 + Consumed gas: 1653.418 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 8 @@ -354,7 +354,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["37","3138","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.412 units (will add 100 for safety) +Estimated gas: 1653.418 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -374,7 +374,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000465 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.412 + Consumed gas: 1653.418 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 9 @@ -407,7 +407,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["38","3230","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.412 units (will add 100 for safety) +Estimated gas: 1653.418 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -427,7 +427,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000465 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.540 + Consumed gas: 1653.546 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 10 @@ -461,7 +461,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["39","3232","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.619 units (will add 100 for safety) +Estimated gas: 1653.625 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -481,7 +481,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000465 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.619 + Consumed gas: 1653.625 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 11 @@ -515,7 +515,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["3130","3234","2b"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.649 units (will add 100 for safety) +Estimated gas: 1653.655 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -535,7 +535,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000467 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.649 + Consumed gas: 1653.655 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 12 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out index 57d4b86401eacbe29ff1441f5f7a0cc53e01537b..baae16482468d88eb863785ecf0646162a465dac 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out index b3fbe8627139915c9da0bdf7e6fff47be9ad53e6..7f43b48a29d7246e0f8e917fa98e24c51767b424 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' @@ -34,7 +34,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -54,7 +54,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -73,7 +73,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.598 units (will add 100 for safety) +Estimated gas: 1652.604 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -93,7 +93,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000469 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.726 + Consumed gas: 1652.732 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -113,7 +113,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.445 units (will add 100 for safety) +Estimated gas: 1653.451 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -133,7 +133,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000481 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.445 + Consumed gas: 1653.451 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -153,7 +153,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.085 units (will add 100 for safety) +Estimated gas: 1654.091 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -173,7 +173,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000493 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.213 + Consumed gas: 1654.219 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 @@ -194,7 +194,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.932 units (will add 100 for safety) +Estimated gas: 1654.938 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -214,7 +214,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000505 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.932 + Consumed gas: 1654.938 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 7 @@ -235,7 +235,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1655.572 units (will add 100 for safety) +Estimated gas: 1655.578 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -255,7 +255,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000517 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.572 + Consumed gas: 1655.578 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 8 @@ -276,7 +276,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.212 units (will add 100 for safety) +Estimated gas: 1656.218 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -296,7 +296,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000529 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.212 + Consumed gas: 1656.218 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 9 @@ -317,7 +317,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.852 units (will add 100 for safety) +Estimated gas: 1656.858 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -337,7 +337,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000541 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.980 + Consumed gas: 1656.986 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 10 @@ -359,7 +359,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1657.699 units (will add 100 for safety) +Estimated gas: 1657.705 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -379,7 +379,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000553 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.699 + Consumed gas: 1657.705 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 11 @@ -401,7 +401,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1658.339 units (will add 100 for safety) +Estimated gas: 1658.345 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -421,7 +421,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000565 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.339 + Consumed gas: 1658.345 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 12 @@ -443,7 +443,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1658.979 units (will add 100 for safety) +Estimated gas: 1658.985 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -463,7 +463,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000577 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.979 + Consumed gas: 1658.985 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 13 @@ -485,7 +485,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1659.619 units (will add 100 for safety) +Estimated gas: 1659.625 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -505,7 +505,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000589 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.619 + Consumed gas: 1659.625 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 14 @@ -527,7 +527,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1660.259 units (will add 100 for safety) +Estimated gas: 1660.265 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -547,7 +547,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000602 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.259 + Consumed gas: 1660.265 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 15 @@ -569,7 +569,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1660.899 units (will add 100 for safety) +Estimated gas: 1660.905 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -589,7 +589,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000614 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.899 + Consumed gas: 1660.905 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 16 @@ -611,7 +611,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1661.539 units (will add 100 for safety) +Estimated gas: 1661.545 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -631,7 +631,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000626 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1661.539 + Consumed gas: 1661.545 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 17 @@ -653,7 +653,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1662.179 units (will add 100 for safety) +Estimated gas: 1662.185 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -673,7 +673,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000638 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.307 + Consumed gas: 1662.313 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 18 @@ -696,7 +696,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1663.026 units (will add 100 for safety) +Estimated gas: 1663.032 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -716,7 +716,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00065 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.026 + Consumed gas: 1663.032 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 19 @@ -739,7 +739,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1663.666 units (will add 100 for safety) +Estimated gas: 1663.672 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -759,7 +759,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000662 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.666 + Consumed gas: 1663.672 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 20 @@ -782,7 +782,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1664.306 units (will add 100 for safety) +Estimated gas: 1664.312 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -802,7 +802,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000674 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.306 + Consumed gas: 1664.312 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 21 @@ -825,7 +825,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1664.946 units (will add 100 for safety) +Estimated gas: 1664.952 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -845,7 +845,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000686 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.946 + Consumed gas: 1664.952 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 22 @@ -868,7 +868,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1665.586 units (will add 100 for safety) +Estimated gas: 1665.592 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -888,7 +888,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000698 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.586 + Consumed gas: 1665.592 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 23 @@ -911,7 +911,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1666.226 units (will add 100 for safety) +Estimated gas: 1666.232 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -931,7 +931,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00071 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.226 + Consumed gas: 1666.232 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 24 @@ -954,7 +954,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1666.866 units (will add 100 for safety) +Estimated gas: 1666.872 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -974,7 +974,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000722 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.866 + Consumed gas: 1666.872 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 25 @@ -997,7 +997,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1667.506 units (will add 100 for safety) +Estimated gas: 1667.512 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1017,7 +1017,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000734 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.506 + Consumed gas: 1667.512 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 26 @@ -1040,7 +1040,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1668.146 units (will add 100 for safety) +Estimated gas: 1668.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1060,7 +1060,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000746 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.146 + Consumed gas: 1668.152 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 27 @@ -1083,7 +1083,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1668.786 units (will add 100 for safety) +Estimated gas: 1668.792 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1103,7 +1103,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000758 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.786 + Consumed gas: 1668.792 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 28 @@ -1126,7 +1126,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1669.426 units (will add 100 for safety) +Estimated gas: 1669.432 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1146,7 +1146,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00077 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.426 + Consumed gas: 1669.432 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 29 @@ -1169,7 +1169,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1670.066 units (will add 100 for safety) +Estimated gas: 1670.072 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1189,7 +1189,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000783 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1670.066 + Consumed gas: 1670.072 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 30 @@ -1212,7 +1212,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1670.706 units (will add 100 for safety) +Estimated gas: 1670.712 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1232,7 +1232,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000795 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1670.706 + Consumed gas: 1670.712 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 31 @@ -1255,7 +1255,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1671.346 units (will add 100 for safety) +Estimated gas: 1671.352 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1275,7 +1275,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000807 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1671.346 + Consumed gas: 1671.352 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 32 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out index 019a44a74bb95c3b0837233689b45d0697baad6c..15e8f3e4981137435b753bdaaae8f982753fcdc6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out index 6010df617e74b4dce8ae70cf42a794c3a002076d..47a81b74a0de918eda1450c15c7fd7ddcac9302c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' @@ -34,7 +34,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.376 units (will add 100 for safety) +Estimated gas: 1652.382 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -54,7 +54,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.376 + Consumed gas: 1652.382 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 32 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out index 57f2f3c2054a98bd1e5f06b3ed7de368595203db..daf6ffc18e4f11bdbe763bd9c777084bbde59ff1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' @@ -34,7 +34,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -54,7 +54,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -73,7 +73,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.598 units (will add 100 for safety) +Estimated gas: 1652.604 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -93,7 +93,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000469 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.726 + Consumed gas: 1652.732 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -113,7 +113,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.445 units (will add 100 for safety) +Estimated gas: 1653.451 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -133,7 +133,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000481 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.445 + Consumed gas: 1653.451 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -153,7 +153,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.085 units (will add 100 for safety) +Estimated gas: 1654.091 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -173,7 +173,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000493 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.213 + Consumed gas: 1654.219 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 @@ -194,7 +194,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.932 units (will add 100 for safety) +Estimated gas: 1654.938 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -214,7 +214,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000505 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.932 + Consumed gas: 1654.938 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 7 @@ -235,7 +235,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1655.572 units (will add 100 for safety) +Estimated gas: 1655.578 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -255,7 +255,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000517 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.572 + Consumed gas: 1655.578 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 8 @@ -276,7 +276,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.212 units (will add 100 for safety) +Estimated gas: 1656.218 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -296,7 +296,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000529 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.212 + Consumed gas: 1656.218 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 9 @@ -317,7 +317,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.852 units (will add 100 for safety) +Estimated gas: 1656.858 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -337,7 +337,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000541 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.980 + Consumed gas: 1656.986 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 10 @@ -359,7 +359,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1657.699 units (will add 100 for safety) +Estimated gas: 1657.705 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -379,7 +379,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000553 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.699 + Consumed gas: 1657.705 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 11 @@ -401,7 +401,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1658.339 units (will add 100 for safety) +Estimated gas: 1658.345 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -421,7 +421,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000565 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.339 + Consumed gas: 1658.345 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 12 @@ -443,7 +443,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1658.979 units (will add 100 for safety) +Estimated gas: 1658.985 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -463,7 +463,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000577 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.979 + Consumed gas: 1658.985 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 13 @@ -485,7 +485,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1659.619 units (will add 100 for safety) +Estimated gas: 1659.625 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -505,7 +505,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000589 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.619 + Consumed gas: 1659.625 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 14 @@ -527,7 +527,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1660.259 units (will add 100 for safety) +Estimated gas: 1660.265 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -547,7 +547,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000602 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.259 + Consumed gas: 1660.265 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 15 @@ -569,7 +569,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1660.899 units (will add 100 for safety) +Estimated gas: 1660.905 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -589,7 +589,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000614 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.899 + Consumed gas: 1660.905 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 16 @@ -611,7 +611,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1661.539 units (will add 100 for safety) +Estimated gas: 1661.545 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -631,7 +631,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000626 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1661.539 + Consumed gas: 1661.545 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 17 @@ -653,7 +653,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1662.179 units (will add 100 for safety) +Estimated gas: 1662.185 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -673,7 +673,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000638 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.307 + Consumed gas: 1662.313 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 18 @@ -696,7 +696,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1663.026 units (will add 100 for safety) +Estimated gas: 1663.032 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -716,7 +716,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00065 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.026 + Consumed gas: 1663.032 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 19 @@ -739,7 +739,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1663.666 units (will add 100 for safety) +Estimated gas: 1663.672 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -759,7 +759,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000662 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.666 + Consumed gas: 1663.672 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 20 @@ -782,7 +782,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1664.306 units (will add 100 for safety) +Estimated gas: 1664.312 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -802,7 +802,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000674 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.306 + Consumed gas: 1664.312 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 21 @@ -825,7 +825,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1664.946 units (will add 100 for safety) +Estimated gas: 1664.952 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -845,7 +845,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000686 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.946 + Consumed gas: 1664.952 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 22 @@ -868,7 +868,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1665.586 units (will add 100 for safety) +Estimated gas: 1665.592 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -888,7 +888,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000698 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.586 + Consumed gas: 1665.592 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 23 @@ -911,7 +911,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1666.226 units (will add 100 for safety) +Estimated gas: 1666.232 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -931,7 +931,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00071 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.226 + Consumed gas: 1666.232 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 24 @@ -954,7 +954,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1666.866 units (will add 100 for safety) +Estimated gas: 1666.872 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -974,7 +974,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000722 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.866 + Consumed gas: 1666.872 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 25 @@ -997,7 +997,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1667.506 units (will add 100 for safety) +Estimated gas: 1667.512 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1017,7 +1017,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000734 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.506 + Consumed gas: 1667.512 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 26 @@ -1040,7 +1040,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1668.146 units (will add 100 for safety) +Estimated gas: 1668.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1060,7 +1060,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000746 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.146 + Consumed gas: 1668.152 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 27 @@ -1083,7 +1083,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1668.786 units (will add 100 for safety) +Estimated gas: 1668.792 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1103,7 +1103,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000758 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.786 + Consumed gas: 1668.792 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 28 @@ -1126,7 +1126,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1669.426 units (will add 100 for safety) +Estimated gas: 1669.432 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1146,7 +1146,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00077 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.426 + Consumed gas: 1669.432 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 29 @@ -1169,7 +1169,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1670.066 units (will add 100 for safety) +Estimated gas: 1670.072 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1189,7 +1189,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000783 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1670.066 + Consumed gas: 1670.072 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 30 @@ -1212,7 +1212,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1670.706 units (will add 100 for safety) +Estimated gas: 1670.712 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1232,7 +1232,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000795 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1670.706 + Consumed gas: 1670.712 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 31 @@ -1255,7 +1255,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1671.346 units (will add 100 for safety) +Estimated gas: 1671.352 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1275,7 +1275,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000807 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1671.346 + Consumed gas: 1671.352 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 32 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out index 2af46c6f84f494b1265a725dc4b20f859d7a97ba..6cec34aebe1a0df4235b89dfebc4878eccf3f3e6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' @@ -128,7 +128,7 @@ Error: ./tezos-client --wait none cement commitment '[SC_ROLLUP_COMMITMENT_HASH]' from bootstrap1 for sc rollup '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 3451.198 units (will add 100 for safety) +Estimated gas: 3451.204 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -148,7 +148,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000653 Cement the commitment [SC_ROLLUP_COMMITMENT_HASH] in the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup commitment cementing was successfully applied - Consumed gas: 3451.198 + Consumed gas: 3451.204 ./tezos-client rpc get /chains/main/blocks/head/context/constants diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out index 81df5bc3907f0abefd225e5584b3fdf634161445..3400a5ab496b24957a5e87615123436c089856de 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/initial_level' @@ -34,7 +34,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -54,7 +54,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -73,7 +73,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.598 units (will add 100 for safety) +Estimated gas: 1652.604 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -93,7 +93,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000469 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.726 + Consumed gas: 1652.732 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -113,7 +113,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.445 units (will add 100 for safety) +Estimated gas: 1653.451 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -133,7 +133,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000481 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.445 + Consumed gas: 1653.451 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -153,7 +153,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.085 units (will add 100 for safety) +Estimated gas: 1654.091 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -173,7 +173,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000493 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.213 + Consumed gas: 1654.219 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 @@ -194,7 +194,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.932 units (will add 100 for safety) +Estimated gas: 1654.938 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -214,7 +214,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000505 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.932 + Consumed gas: 1654.938 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 7 @@ -235,7 +235,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1655.572 units (will add 100 for safety) +Estimated gas: 1655.578 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -255,7 +255,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000517 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.572 + Consumed gas: 1655.578 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 8 @@ -276,7 +276,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.212 units (will add 100 for safety) +Estimated gas: 1656.218 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -296,7 +296,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000529 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.212 + Consumed gas: 1656.218 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 9 @@ -317,7 +317,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.852 units (will add 100 for safety) +Estimated gas: 1656.858 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -337,7 +337,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000541 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.980 + Consumed gas: 1656.986 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 10 @@ -359,7 +359,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1657.699 units (will add 100 for safety) +Estimated gas: 1657.705 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -379,7 +379,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000553 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.699 + Consumed gas: 1657.705 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 11 @@ -401,7 +401,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1658.339 units (will add 100 for safety) +Estimated gas: 1658.345 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -421,7 +421,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000565 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.339 + Consumed gas: 1658.345 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 12 @@ -443,7 +443,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1658.979 units (will add 100 for safety) +Estimated gas: 1658.985 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -463,7 +463,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000577 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.979 + Consumed gas: 1658.985 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 13 @@ -485,7 +485,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1659.619 units (will add 100 for safety) +Estimated gas: 1659.625 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -505,7 +505,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000589 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.619 + Consumed gas: 1659.625 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 14 @@ -527,7 +527,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1660.259 units (will add 100 for safety) +Estimated gas: 1660.265 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -547,7 +547,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000602 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.259 + Consumed gas: 1660.265 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 15 @@ -569,7 +569,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1660.899 units (will add 100 for safety) +Estimated gas: 1660.905 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -589,7 +589,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000614 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.899 + Consumed gas: 1660.905 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 16 @@ -611,7 +611,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1661.539 units (will add 100 for safety) +Estimated gas: 1661.545 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -631,7 +631,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000626 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1661.539 + Consumed gas: 1661.545 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 17 @@ -653,7 +653,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1662.179 units (will add 100 for safety) +Estimated gas: 1662.185 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -673,7 +673,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000638 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.307 + Consumed gas: 1662.313 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 18 @@ -696,7 +696,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1663.026 units (will add 100 for safety) +Estimated gas: 1663.032 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -716,7 +716,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00065 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.026 + Consumed gas: 1663.032 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 19 @@ -739,7 +739,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1663.666 units (will add 100 for safety) +Estimated gas: 1663.672 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -759,7 +759,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000662 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.666 + Consumed gas: 1663.672 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 20 @@ -782,7 +782,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1664.306 units (will add 100 for safety) +Estimated gas: 1664.312 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -802,7 +802,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000674 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.306 + Consumed gas: 1664.312 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 21 @@ -825,7 +825,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1664.946 units (will add 100 for safety) +Estimated gas: 1664.952 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -845,7 +845,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000686 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.946 + Consumed gas: 1664.952 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 22 @@ -868,7 +868,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1665.586 units (will add 100 for safety) +Estimated gas: 1665.592 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -888,7 +888,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000698 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.586 + Consumed gas: 1665.592 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 23 @@ -911,7 +911,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1666.226 units (will add 100 for safety) +Estimated gas: 1666.232 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -931,7 +931,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00071 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.226 + Consumed gas: 1666.232 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 24 @@ -954,7 +954,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1666.866 units (will add 100 for safety) +Estimated gas: 1666.872 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -974,7 +974,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000722 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.866 + Consumed gas: 1666.872 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 25 @@ -997,7 +997,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1667.506 units (will add 100 for safety) +Estimated gas: 1667.512 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1017,7 +1017,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000734 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.506 + Consumed gas: 1667.512 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 26 @@ -1040,7 +1040,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1668.146 units (will add 100 for safety) +Estimated gas: 1668.152 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1060,7 +1060,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000746 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.146 + Consumed gas: 1668.152 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 27 @@ -1083,7 +1083,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1668.786 units (will add 100 for safety) +Estimated gas: 1668.792 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1103,7 +1103,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000758 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.786 + Consumed gas: 1668.792 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 28 @@ -1126,7 +1126,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1669.426 units (will add 100 for safety) +Estimated gas: 1669.432 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1146,7 +1146,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00077 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.426 + Consumed gas: 1669.432 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 29 @@ -1169,7 +1169,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1670.066 units (will add 100 for safety) +Estimated gas: 1670.072 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1189,7 +1189,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000783 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1670.066 + Consumed gas: 1670.072 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 30 @@ -1212,7 +1212,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1670.706 units (will add 100 for safety) +Estimated gas: 1670.712 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1232,7 +1232,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000795 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1670.706 + Consumed gas: 1670.712 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 31 @@ -1255,7 +1255,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1671.346 units (will add 100 for safety) +Estimated gas: 1671.352 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1275,7 +1275,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000807 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1671.346 + Consumed gas: 1671.352 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 32 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out index 6d1e1b2e0b65d6dc18c14a04e6750b9e68654a8e..ea9db87d67260ae82668ff20dd27fef2943c388b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,23 +15,23 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -51,7 +51,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -70,7 +70,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.598 units (will add 100 for safety) +Estimated gas: 1652.604 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -90,7 +90,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000469 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.726 + Consumed gas: 1652.732 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out index a3167bc02bce01a3d0c59b357f3d122a7eefb22b..f27e21b62c493c0f5cec066efbd49cbfdbaf98f3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,23 +15,23 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -51,7 +51,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -70,7 +70,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.958 units (will add 100 for safety) +Estimated gas: 1651.964 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -90,7 +90,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.086 + Consumed gas: 1652.092 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -110,7 +110,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.958 units (will add 100 for safety) +Estimated gas: 1651.964 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: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.086 + Consumed gas: 1652.092 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -150,7 +150,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.165 units (will add 100 for safety) +Estimated gas: 1652.171 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -170,7 +170,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.165 + Consumed gas: 1652.171 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out index 77127e27ca93bb5b3bcf4d491d740da98089e576..ae7d463d36734d11409350e4a169391c10119cab 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,23 +15,23 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -51,7 +51,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -70,7 +70,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.598 units (will add 100 for safety) +Estimated gas: 1652.604 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -90,7 +90,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000469 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.726 + Consumed gas: 1652.732 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -110,7 +110,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.165 units (will add 100 for safety) +Estimated gas: 1652.171 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: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.165 + Consumed gas: 1652.171 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -150,7 +150,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.805 units (will add 100 for safety) +Estimated gas: 1652.811 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -170,7 +170,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000469 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.933 + Consumed gas: 1652.939 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (too_many_m.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (too_many_m.out index 5aca0b9bb81f4acebb6f2f8abbc7b41f8dda81c8..e817e0b3f962e2a7e409b186f8aefb218be38841 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (too_many_m.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (too_many_m.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,23 +15,23 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1782.300 units (will add 100 for safety) +Estimated gas: 1782.306 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -51,7 +51,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1782.428 + Consumed gas: 1782.434 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -70,7 +70,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1782.524 units (will add 100 for safety) +Estimated gas: 1782.530 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -90,7 +90,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1782.652 + Consumed gas: 1782.658 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -110,7 +110,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1782.731 units (will add 100 for safety) +Estimated gas: 1782.737 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: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1782.731 + Consumed gas: 1782.737 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -150,7 +150,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1782.731 units (will add 100 for safety) +Estimated gas: 1782.737 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -170,7 +170,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1782.859 + Consumed gas: 1782.865 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 @@ -191,7 +191,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1782.938 units (will add 100 for safety) +Estimated gas: 1782.944 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -211,7 +211,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1782.938 + Consumed gas: 1782.944 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 7 @@ -232,7 +232,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1782.938 units (will add 100 for safety) +Estimated gas: 1782.944 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -252,7 +252,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1782.938 + Consumed gas: 1782.944 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 8 @@ -273,7 +273,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1782.938 units (will add 100 for safety) +Estimated gas: 1782.944 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -293,7 +293,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1782.938 + Consumed gas: 1782.944 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 9 @@ -314,7 +314,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1782.938 units (will add 100 for safety) +Estimated gas: 1782.944 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -334,7 +334,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.066 + Consumed gas: 1783.072 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 10 @@ -356,7 +356,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.145 units (will add 100 for safety) +Estimated gas: 1783.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -376,7 +376,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.145 + Consumed gas: 1783.151 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 11 @@ -398,7 +398,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.145 units (will add 100 for safety) +Estimated gas: 1783.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -418,7 +418,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.145 + Consumed gas: 1783.151 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 12 @@ -440,7 +440,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.145 units (will add 100 for safety) +Estimated gas: 1783.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -460,7 +460,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.145 + Consumed gas: 1783.151 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 13 @@ -482,7 +482,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.145 units (will add 100 for safety) +Estimated gas: 1783.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -502,7 +502,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.145 + Consumed gas: 1783.151 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 14 @@ -524,7 +524,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.145 units (will add 100 for safety) +Estimated gas: 1783.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -544,7 +544,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.145 + Consumed gas: 1783.151 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 15 @@ -566,7 +566,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.145 units (will add 100 for safety) +Estimated gas: 1783.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -586,7 +586,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.145 + Consumed gas: 1783.151 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 16 @@ -608,7 +608,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.145 units (will add 100 for safety) +Estimated gas: 1783.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -628,7 +628,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.145 + Consumed gas: 1783.151 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 17 @@ -650,7 +650,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.145 units (will add 100 for safety) +Estimated gas: 1783.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -670,7 +670,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.273 + Consumed gas: 1783.279 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 18 @@ -693,7 +693,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.352 units (will add 100 for safety) +Estimated gas: 1783.358 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -713,7 +713,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.352 + Consumed gas: 1783.358 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 19 @@ -736,7 +736,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.352 units (will add 100 for safety) +Estimated gas: 1783.358 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -756,7 +756,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.352 + Consumed gas: 1783.358 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 20 @@ -779,7 +779,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1783.352 units (will add 100 for safety) +Estimated gas: 1783.358 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -799,7 +799,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.002918 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1783.352 + Consumed gas: 1783.358 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 21 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out index 8adfc080b89eb18e43b964e62d213c5bf5e6918b..7cebd8de367425534b4a8de0ced550fee42cc40a 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6552 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6553 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. @@ -15,18 +15,18 @@ This sequence of operations was run: Fee to the baker: ꜩ0.00044 Expected counter: 1 Gas limit: 1901 - Storage limit: 6572 bytes + Storage limit: 6573 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00044 payload fees(the block proposer) ....... +ꜩ0.00044 Originate smart contract rollup of kind arith and type unit with boot sector '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6552 bytes + Consumed gas: 1800.800 + Storage size: 6553 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.638 - storage fees ........................... +ꜩ1.638 + [PUBLIC_KEY_HASH] ... -ꜩ1.63825 + storage fees ........................... +ꜩ1.63825 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/boot_sector' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out index d14df54249200d4c1cc7438c11806611d5c0ef25..b51b2faf44b9b993d2f18c5ab57fc600a16e0df1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,16 +15,16 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out index 2a2f04ae8ae3e0c57bb8a95295f241c7d0a0f456..5a184ffed3a9bff4911e062484aa26ab5ce99fe6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,23 +15,23 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.736 units (will add 100 for safety) +Estimated gas: 1651.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -51,7 +51,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000457 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.864 + Consumed gas: 1651.870 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -70,7 +70,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.598 units (will add 100 for safety) +Estimated gas: 1652.604 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -90,7 +90,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000469 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.726 + Consumed gas: 1652.732 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -110,7 +110,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.445 units (will add 100 for safety) +Estimated gas: 1653.451 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: payload fees(the block proposer) ....... +ꜩ0.000481 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.445 + Consumed gas: 1653.451 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5 @@ -150,7 +150,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.085 units (will add 100 for safety) +Estimated gas: 1654.091 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -170,7 +170,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000493 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.213 + Consumed gas: 1654.219 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 6 @@ -191,7 +191,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.932 units (will add 100 for safety) +Estimated gas: 1654.938 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -211,7 +211,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000505 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.932 + Consumed gas: 1654.938 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 7 @@ -232,7 +232,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1655.572 units (will add 100 for safety) +Estimated gas: 1655.578 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -252,7 +252,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000517 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.572 + Consumed gas: 1655.578 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 8 @@ -273,7 +273,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.212 units (will add 100 for safety) +Estimated gas: 1656.218 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -293,7 +293,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000529 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.212 + Consumed gas: 1656.218 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 9 @@ -314,7 +314,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.852 units (will add 100 for safety) +Estimated gas: 1656.858 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -334,7 +334,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000541 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.980 + Consumed gas: 1656.986 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 10 @@ -356,7 +356,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1657.699 units (will add 100 for safety) +Estimated gas: 1657.705 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -376,7 +376,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000553 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.699 + Consumed gas: 1657.705 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 11 @@ -398,7 +398,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE","CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1658.339 units (will add 100 for safety) +Estimated gas: 1658.345 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -418,7 +418,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000565 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.339 + Consumed gas: 1658.345 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 12 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out index df5839ce974f9def2c05c407c0ad8aca177660a7..c27f74589686e9a5ee447f8d458c0a99bf3aa03b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 1800.796 units (will add 100 for safety) -Estimated storage: 6540 bytes added (will add 20 for safety) +Estimated gas: 1800.800 units (will add 100 for safety) +Estimated storage: 6541 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. @@ -15,23 +15,23 @@ This sequence of operations was run: Fee to the baker: ꜩ0.000428 Expected counter: 1 Gas limit: 1901 - Storage limit: 6560 bytes + Storage limit: 6561 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000428 payload fees(the block proposer) ....... +ꜩ0.000428 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 1800.796 - Storage size: 6540 bytes + Consumed gas: 1800.800 + Storage size: 6541 bytes Address: [SC_ROLLUP_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.635 - storage fees ........................... +ꜩ1.635 + [PUBLIC_KEY_HASH] ... -ꜩ1.63525 + storage fees ........................... +ꜩ1.63525 ./tezos-client --wait none send sc rollup message 'text:["hello, message number 0", "hello, message number 1", "hello, message number 2", "hello, message number 3", "hello, message number 4"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1655.421 units (will add 100 for safety) +Estimated gas: 1655.427 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -51,7 +51,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.00058 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.549 + Consumed gas: 1655.555 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 3 @@ -70,7 +70,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["hello, message number 5", "hello, message number 6", "hello, message number 7", "hello, message number 8", "hello, message number 9", "hello, message number 10"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1656.523 units (will add 100 for safety) +Estimated gas: 1656.529 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -90,7 +90,7 @@ This sequence of operations was run: payload fees(the block proposer) ....... +ꜩ0.000608 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.651 + Consumed gas: 1656.657 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 4 @@ -110,7 +110,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:[]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.525 units (will add 100 for safety) +Estimated gas: 1651.531 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: payload fees(the block proposer) ....... +ꜩ0.000445 Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.525 + Consumed gas: 1651.531 Resulting inbox state: rollup = [SC_ROLLUP_HASH] level = 5