From ee7f9fa380243a7beb45af9048088fa83fa030ff Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 00:08:17 +0200 Subject: [PATCH 1/7] Proto/SCORU: add gas cost definitions. They will be used to carbonate Sc_rollup_repr.Address.from_nonce, so the definitions must make sense with regards to the type Origination_nonce.t. --- src/proto_alpha/lib_protocol/sc_rollup_costs.ml | 9 +++++++++ src/proto_alpha/lib_protocol/sc_rollup_costs.mli | 2 ++ 2 files changed, 11 insertions(+) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml index 14e29f2d6c98..5ff7a524d3b8 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml @@ -73,6 +73,15 @@ module Constants = struct number of ticks (both int32) is negligible. *) let cost_serialize_commitment = S_syntax.(cost_serialize_state_hash + cost_serialize_commitment_hash) + + (* Cost of serializing an operation hash. *) + let cost_serialize_operation_hash = + let len = S.safe_int Operation_hash.size in + S_syntax.(cost_encode_string_per_byte * len) + + (* Cost of serializing a nonce. The cost of serializing the index (an int32) + is negligible. *) + let cost_serialize_nonce = cost_serialize_operation_hash end (* We assume that the gas cost of adding messages [[ m_1; ... ; m_n]] at level diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.mli b/src/proto_alpha/lib_protocol/sc_rollup_costs.mli index 7cc527a08641..5b47cc667a71 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.mli @@ -40,6 +40,8 @@ module Constants : sig val cost_serialize_commitment_hash : Gas_limit_repr.cost val cost_serialize_commitment : Gas_limit_repr.cost + + val cost_serialize_nonce : Gas_limit_repr.cost end (** [is_valid_parameters_ty_cost ty] returns the cost of checking whether a type -- GitLab From f81c79e43b34fcc0121f0df44cf2d284eb8200f3 Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 00:14:43 +0200 Subject: [PATCH 2/7] Proto/SCORU: expose an error. Because it is used by from_nonce, and so that we can define a new from_nonce function that accounts for gas. --- src/proto_alpha/lib_protocol/sc_rollup_repr.mli | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_repr.mli index 42967ec9d027..681ee3ee6d1a 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_repr.mli @@ -44,8 +44,10 @@ module Address : sig include S.HASH + type error += (* `Permanent *) Error_sc_rollup_address_generation + (** [from_nonce nonce] produces an address completely determined by - an operation hash and an origination counter. *) + an operation hash and an origination counter. *) val from_nonce : Origination_nonce.t -> t tzresult (** [encoded_size] is the number of bytes needed to represent an address. *) -- GitLab From 31439c6fa3e10b404ffc58a5acbdbe8ae9f646bf Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 00:19:49 +0200 Subject: [PATCH 3/7] Proto/SCORU: define and use an address_from_nonce function. It's exactly Sc_rollup_repr.Address.from_nonce, but it's ready to account for gas by having a context as parameter and returning the context, though it's not modifying it for now. This will be done in the next commit. --- src/proto_alpha/lib_protocol/sc_rollup_storage.ml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index 1f31a5a4ae16..1a4a1ffec0ea 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -29,6 +29,13 @@ module Store = Storage.Sc_rollup module Commitment = Sc_rollup_commitment_repr module Commitment_hash = Commitment.Hash +(** [address_from_nonce ctxt nonce] produces an address completely determined by + an operation hash and an origination counter, and accounts for gas spent. *) +let address_from_nonce ctxt nonce = + match Data_encoding.Binary.to_bytes_opt Origination_nonce.encoding nonce with + | None -> error Sc_rollup_repr.Address.Error_sc_rollup_address_generation + | Some nonce -> ok @@ (ctxt, Sc_rollup_repr.Address.hash_bytes [nonce]) + let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let open Lwt_tzresult_syntax in let*? ctxt, genesis_commitment_hash = @@ -36,7 +43,7 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = in let*? ctxt, nonce = Raw_context.increment_origination_nonce ctxt in let level = Raw_context.current_level ctxt in - let*? address = Sc_rollup_repr.Address.from_nonce nonce in + let*? ctxt, address = address_from_nonce ctxt nonce in let* ctxt, pvm_kind_size, _kind_existed = Store.PVM_kind.add ctxt address kind in -- GitLab From 4825b6c61c142ad1dad53837a2c41dff1dfcef6d Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 00:23:47 +0200 Subject: [PATCH 4/7] Proto/SCORU: account for gas in address_from_nonce. --- src/proto_alpha/lib_protocol/sc_rollup_storage.ml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index 1a4a1ffec0ea..1d1c8c085f9d 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -32,9 +32,20 @@ module Commitment_hash = Commitment.Hash (** [address_from_nonce ctxt nonce] produces an address completely determined by an operation hash and an origination counter, and accounts for gas spent. *) let address_from_nonce ctxt nonce = + let open Tzresult_syntax in + let* ctxt = + Raw_context.consume_gas ctxt Sc_rollup_costs.Constants.cost_serialize_nonce + in match Data_encoding.Binary.to_bytes_opt Origination_nonce.encoding nonce with | None -> error Sc_rollup_repr.Address.Error_sc_rollup_address_generation - | Some nonce -> ok @@ (ctxt, Sc_rollup_repr.Address.hash_bytes [nonce]) + | Some nonce_bytes -> + let bytes_len = Bytes.length nonce_bytes in + let+ ctxt = + Raw_context.consume_gas + ctxt + (Sc_rollup_costs.cost_hash_bytes ~bytes_len) + in + (ctxt, Sc_rollup_repr.Address.hash_bytes [nonce_bytes]) let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let open Lwt_tzresult_syntax in -- GitLab From 8cc31ac9f9036bffc273e17d1f5f4a16169e4173 Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 00:25:44 +0200 Subject: [PATCH 5/7] Proto/SCORU: remove the unused Sc_rollup_repr.Address.from_nonce function. --- src/proto_alpha/lib_protocol/sc_rollup_repr.ml | 6 ------ src/proto_alpha/lib_protocol/sc_rollup_repr.mli | 4 ---- 2 files changed, 10 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_repr.ml index b541fb1ff35a..2e8aaa48ee5f 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_repr.ml @@ -65,12 +65,6 @@ module Address = struct (function Error_sc_rollup_address_generation -> Some () | _ -> None) (fun () -> Error_sc_rollup_address_generation) - let from_nonce nonce = - Data_encoding.Binary.to_bytes_opt Origination_nonce.encoding nonce - |> function - | None -> error Error_sc_rollup_address_generation - | Some nonce -> ok @@ hash_bytes [nonce] - let of_b58data = function H.Data h -> Some h | _ -> None end diff --git a/src/proto_alpha/lib_protocol/sc_rollup_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_repr.mli index 681ee3ee6d1a..7bd9be5a922a 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_repr.mli @@ -46,10 +46,6 @@ module Address : sig type error += (* `Permanent *) Error_sc_rollup_address_generation - (** [from_nonce nonce] produces an address completely determined by - an operation hash and an origination counter. *) - val from_nonce : Origination_nonce.t -> t tzresult - (** [encoded_size] is the number of bytes needed to represent an address. *) val encoded_size : int -- GitLab From 13aac909951e4971de718ed3cf21d87d0b45ce14 Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 11:38:35 +0200 Subject: [PATCH 6/7] Proto/SCORU: move Error_sc_rollup_address_generation to Sc_rollup_errors. --- src/proto_alpha/lib_protocol/sc_rollup_errors.ml | 11 +++++++++++ src/proto_alpha/lib_protocol/sc_rollup_repr.ml | 15 --------------- src/proto_alpha/lib_protocol/sc_rollup_repr.mli | 2 -- src/proto_alpha/lib_protocol/sc_rollup_storage.ml | 2 +- 4 files changed, 12 insertions(+), 18 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_errors.ml b/src/proto_alpha/lib_protocol/sc_rollup_errors.ml index 48e47ed1d69d..3e693a2e6e2a 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_errors.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_errors.ml @@ -68,6 +68,7 @@ type error += min_expected_balance : Tez_repr.t; } | (* `Temporary *) Sc_rollup_bad_commitment_serialization + | (* `Permanent *) Sc_rollup_address_generation let () = register_error_kind @@ -442,4 +443,14 @@ let () = Data_encoding.empty (function Sc_rollup_bad_commitment_serialization -> Some () | _ -> None) (fun () -> Sc_rollup_bad_commitment_serialization) ; + let description = "Error while generating rollup address" in + register_error_kind + `Permanent + ~id:"rollup.error_smart_contract_rollup_address_generation" + ~title:description + ~pp:(fun ppf () -> Format.fprintf ppf "%s" description) + ~description + Data_encoding.empty + (function Sc_rollup_address_generation -> Some () | _ -> None) + (fun () -> Sc_rollup_address_generation) ; () diff --git a/src/proto_alpha/lib_protocol/sc_rollup_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_repr.ml index 2e8aaa48ee5f..01c1d9d6d9bd 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_repr.ml @@ -50,21 +50,6 @@ module Address = struct include Path_encoding.Make_hex (H) - type error += (* `Permanent *) Error_sc_rollup_address_generation - - let () = - let open Data_encoding in - let msg = "Error while generating rollup address" in - register_error_kind - `Permanent - ~id:"rollup.error_smart_contract_rollup_address_generation" - ~title:msg - ~pp:(fun ppf () -> Format.fprintf ppf "%s" msg) - ~description:msg - unit - (function Error_sc_rollup_address_generation -> Some () | _ -> None) - (fun () -> Error_sc_rollup_address_generation) - let of_b58data = function H.Data h -> Some h | _ -> None end diff --git a/src/proto_alpha/lib_protocol/sc_rollup_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_repr.mli index 7bd9be5a922a..7e317f1c4d5d 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_repr.mli @@ -44,8 +44,6 @@ module Address : sig include S.HASH - type error += (* `Permanent *) Error_sc_rollup_address_generation - (** [encoded_size] is the number of bytes needed to represent an address. *) val encoded_size : int diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index 1d1c8c085f9d..bb45a9031b6d 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -37,7 +37,7 @@ let address_from_nonce ctxt nonce = Raw_context.consume_gas ctxt Sc_rollup_costs.Constants.cost_serialize_nonce in match Data_encoding.Binary.to_bytes_opt Origination_nonce.encoding nonce with - | None -> error Sc_rollup_repr.Address.Error_sc_rollup_address_generation + | None -> error Sc_rollup_address_generation | Some nonce_bytes -> let bytes_len = Bytes.length nonce_bytes in let+ ctxt = -- GitLab From a655d70361a5423311c40ee6c227e155a5dbba1e Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Fri, 22 Jul 2022 00:23:03 +0200 Subject: [PATCH 7/7] Tezt: update regression traces. --- ...ctionality (feature_flag_is_disabled).out | 12 +- ...ctionality (rollup_node_dal_subscript.out | 12 +- ... smart contract optimistic rollup node.out | 12 +- .../Alpha- consecutive commitments.out | 12 +- .../Alpha- ensure boot sector is used.out | 24 ++-- ...Alpha- get genesis info of a sc rollup.out | 12 +- ...nt hash and inbox level of a sc rollup.out | 12 +- ...ract rollup address through the client.out | 12 +- .../Alpha- list originated rollups.out | 120 +++++++++--------- ...ances PVM state with internal messages.out | 12 +- ... node advances PVM state with messages.out | 12 +- ...pha- node boots into the initial state.out | 12 +- ...ommitments in the rollup node (commitm.out | 12 +- ...ommitments in the rollup node (first_p.out | 12 +- ...ommitments in the rollup node (handles.out | 12 +- ...ommitments in the rollup node (message.out | 12 +- ...ommitments in the rollup node (no_comm.out | 12 +- ...ommitments in the rollup node (node_us.out | 12 +- ...ommitments in the rollup node (non_fin.out | 12 +- ...ommitments in the rollup node (robust_.out | 12 +- ...ce of inbox in the rollup node (basic).out | 12 +- ...f inbox in the rollup node (handles_ch.out | 12 +- ...ce of inbox in the rollup node (stops).out | 12 +- ...tegy of refutation games (inbox_proof).out | 12 +- ...efutation games (inbox_proof_at_genesi.out | 12 +- ...efutation games (inbox_proof_many_empt.out | 12 +- ...efutation games (inbox_proof_one_empty.out | 12 +- ...tegy of refutation games (pvm_proof_0).out | 12 +- ...tegy of refutation games (pvm_proof_1).out | 12 +- ...tegy of refutation games (pvm_proof_2).out | 12 +- ...tegy of refutation games (pvm_proof_3).out | 12 +- ...efutation games (pvm_proof_at_genesis).out | 12 +- ...strategy of refutation games (timeout).out | 12 +- .../Alpha- originate with boot sector.out | 12 +- ...tion of a SCORU executes without error.out | 12 +- ...ssages in the inbox - check inbox size.out | 12 +- ...s in the inbox - current messages hash.out | 12 +- 37 files changed, 282 insertions(+), 282 deletions(-) diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out index 0aa872b1f5e1..cf3a1bd89232 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out @@ -1,7 +1,7 @@ ./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: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out index d6300a3dacb0..0130dffc589a 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out @@ -1,7 +1,7 @@ ./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: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 4c959b604dc8..b724e1d642fc 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out index c1554ec9e012..ebdd3d87973c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 bdcb605c0689..5e05f2a3b52e 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.947 units (will add 100 for safety) +Estimated gas: 3110.481 units (will add 100 for safety) Estimated storage: 6664 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000686 + Fee to the baker: ꜩ0.000687 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6684 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000687 + payload fees(the block proposer) ....... +ꜩ0.000687 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 3109.947 + Consumed gas: 3110.481 Storage size: 6664 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -81,7 +81,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with 31 --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.907 units (will add 100 for safety) +Estimated gas: 3110.441 units (will add 100 for safety) Estimated storage: 6654 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -92,19 +92,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000676 + Fee to the baker: ꜩ0.000677 Expected counter: 3 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6674 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000676 - payload fees(the block proposer) ....... +ꜩ0.000676 + [PUBLIC_KEY_HASH] ... -ꜩ0.000677 + payload fees(the block proposer) ....... +ꜩ0.000677 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '31' This smart contract rollup origination was successfully applied - Consumed gas: 3109.907 + Consumed gas: 3110.441 Storage size: 6654 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out index 4c959b604dc8..b724e1d642fc 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 4c959b604dc8..b724e1d642fc 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 4c959b604dc8..b724e1d642fc 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 5cff8dbbeb08..bbed38e21952 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -35,7 +35,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,19 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 2 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -69,7 +69,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -80,19 +80,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 3 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -103,7 +103,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -114,19 +114,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 4 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -137,7 +137,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -148,19 +148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 5 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -171,7 +171,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -182,19 +182,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 6 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -205,7 +205,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -216,19 +216,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 7 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -239,7 +239,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -250,19 +250,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 8 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -273,7 +273,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -284,19 +284,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 9 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -307,7 +307,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -318,19 +318,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 10 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out index fb51fa2758ec..08590ead7418 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 bd9b7565630a..8e6a76a47ca3 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 613ab9064cc1..db59c6eefa37 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 57d9029ff8d0..25b3189d7902 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 5f48be9179b9..40a955bce5d0 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 4673ebf956f7..83c21f2b2beb 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 9d8e8103bfdd..7d6e55760bc8 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 956a73c509e5..a72d01c1a9e2 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out index 427cae810c2b..bb58653f42a0 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 0cb295c073cc..e584dd916842 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out index b4add3236dd4..6a35e729e3f2 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 bf9f00752292..ee3b8fe79811 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 1e2eeb737e67..a7b9d7ac615d 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 45f6b433b20d..ffeaeffc8aba 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out index e6e6a8133e40..e9498c3a5b07 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out index e6e6a8133e40..e9498c3a5b07 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out index 01e610c368fb..5212f78ae520 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out index 979f4b7b0907..c4f2da626564 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out index e6e6a8133e40..e9498c3a5b07 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out index e6e6a8133e40..e9498c3a5b07 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out index e96cdffcd407..ec284d1695bd 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out index f20d3a5fc5a4..4a7ba79bd4c9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out index e6e6a8133e40..e9498c3a5b07 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out index e6e6a8133e40..e9498c3a5b07 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 a511f54f8a1f..35bc9265095f 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.947 units (will add 100 for safety) +Estimated gas: 3110.481 units (will add 100 for safety) Estimated storage: 6664 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000686 + Fee to the baker: ꜩ0.000687 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6684 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000687 + payload fees(the block proposer) ....... +ꜩ0.000687 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 3109.947 + Consumed gas: 3110.481 Storage size: 6664 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 4c959b604dc8..b724e1d642fc 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 dfb1b838d583..23921f9a9c2f 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] 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 9cf0fbe74dea..03a5279fa7f7 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,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] -- GitLab