From 0a431b8f12e376467acc751e11777627709f67b5 Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 19:05:06 +0200 Subject: [PATCH 1/5] Proto/SCORU: make genesis_info return a context. So that it's easy to carbonate it after, even if it comes as the side effect of making Genesis_info a carbonated map. --- src/proto_alpha/lib_plugin/RPC.ml | 6 +++++- src/proto_alpha/lib_protocol/alpha_context.mli | 3 ++- src/proto_alpha/lib_protocol/sc_rollup_storage.ml | 2 +- src/proto_alpha/lib_protocol/sc_rollup_storage.mli | 2 +- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index 306e5fbd0ecb..c670c8e211f8 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -1965,9 +1965,13 @@ module Sc_rollup = struct (* TODO: https://gitlab.com/tezos/tezos/-/issues/2688 *) let register_genesis_info () = + let open Lwt_result_syntax in Registration.register1 ~chunked:true S.genesis_info @@ fun ctxt address () () -> - Alpha_context.Sc_rollup.genesis_info ctxt address + let+ _ctxt, genesis_info = + Alpha_context.Sc_rollup.genesis_info ctxt address + in + genesis_info let register_boot_sector () = Registration.register1 ~chunked:true S.boot_sector diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index f0cc3a42c97d..3e8fc9f75297 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3504,7 +3504,8 @@ module Sc_rollup : sig val list_unaccounted : context -> t list tzresult Lwt.t - val genesis_info : context -> rollup -> Commitment.genesis_info tzresult Lwt.t + val genesis_info : + context -> rollup -> (context * Commitment.genesis_info) tzresult Lwt.t val get_boot_sector : context -> t -> (context * string) tzresult Lwt.t diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index 23abcf365139..ff17e97b007f 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -117,7 +117,7 @@ let genesis_info ctxt rollup = let* genesis_info = Store.Genesis_info.find ctxt rollup in match genesis_info with | None -> fail (Sc_rollup_does_not_exist rollup) - | Some genesis_info -> return genesis_info + | Some genesis_info -> return (ctxt, genesis_info) let get_boot_sector ctxt rollup = let open Lwt_tzresult_syntax in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_storage.mli index dc4cb5ea8e9f..682e0c1d9fda 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.mli @@ -59,7 +59,7 @@ val list_unaccounted : Raw_context.t -> Sc_rollup_repr.t list tzresult Lwt.t val genesis_info : Raw_context.t -> Sc_rollup_repr.t -> - Sc_rollup_commitment_repr.genesis_info tzresult Lwt.t + (Raw_context.t * Sc_rollup_commitment_repr.genesis_info) tzresult Lwt.t (** [get_boot_sector ctxt sc_rollup] retrieves the boot sector for [sc_rollup]. *) val get_boot_sector : -- GitLab From 165f9bea3f6bda316c5efa273a3993512b3e77b6 Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 19:08:38 +0200 Subject: [PATCH 2/5] Proto/SCORU: make Genesis_info a carbonated map. Does not compile: code to adapt at calling sites. [skip ci] --- src/proto_alpha/lib_protocol/storage.ml | 2 +- src/proto_alpha/lib_protocol/storage.mli | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/proto_alpha/lib_protocol/storage.ml b/src/proto_alpha/lib_protocol/storage.ml index 637404e7263f..8d587d84d443 100644 --- a/src/proto_alpha/lib_protocol/storage.ml +++ b/src/proto_alpha/lib_protocol/storage.ml @@ -1628,7 +1628,7 @@ module Sc_rollup = struct end) module Genesis_info = - Indexed_context.Make_map + Indexed_context.Make_carbonated_map (struct let name = ["genesis_info"] end) diff --git a/src/proto_alpha/lib_protocol/storage.mli b/src/proto_alpha/lib_protocol/storage.mli index c4c00f28d58f..0852cb969ecf 100644 --- a/src/proto_alpha/lib_protocol/storage.mli +++ b/src/proto_alpha/lib_protocol/storage.mli @@ -716,7 +716,7 @@ module Sc_rollup : sig and type t := Raw_context.t module Genesis_info : - Indexed_data_storage + Non_iterable_indexed_carbonated_data_storage with type key = Sc_rollup_repr.t and type value = Sc_rollup_commitment_repr.genesis_info and type t := Raw_context.t -- GitLab From b549071094ba73a2177d8f5cc732c916f27fb626 Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 14:43:26 +0200 Subject: [PATCH 3/5] Proto/SCORU: adapt to Genesis_info being a carbonated map. --- src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml | 2 +- src/proto_alpha/lib_protocol/sc_rollup_storage.ml | 7 ++++--- .../lib_protocol/test/unit/test_sc_rollup_storage.ml | 4 +++- 3 files changed, 8 insertions(+), 5 deletions(-) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml index b5197a82cd04..915b3ccaab55 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_inbox_storage.ml @@ -104,7 +104,7 @@ let add_messages ctxt rollup messages = assert_inbox_nb_messages_in_commitment_period ctxt inbox num_messages in let inbox_level = Sc_rollup_inbox_repr.inbox_level inbox in - let* genesis_info = Storage.Sc_rollup.Genesis_info.get ctxt rollup in + let* ctxt, genesis_info = Storage.Sc_rollup.Genesis_info.get ctxt rollup in let origination_level = genesis_info.level in let levels = Int32.sub diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index ff17e97b007f..c021c58c8eee 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -40,7 +40,7 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let* ctxt, pvm_kind_size, _kind_existed = Store.PVM_kind.add ctxt address kind in - let*! ctxt = + let* ctxt, genesis_info_size, _info_existed = Store.Genesis_info.add ctxt address @@ -96,7 +96,8 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = (origination_size + stored_kind_size + boot_sector_size + addresses_size + inbox_size_diff + lcc_size_diff + commitment_size_diff + commitment_added_size_diff + commitment_staker_count_size_diff - + stakers_size_diff + param_ty_size_diff + pvm_kind_size) + + stakers_size_diff + param_ty_size_diff + pvm_kind_size + + genesis_info_size) in return (address, size, genesis_commitment_hash, ctxt) @@ -114,7 +115,7 @@ let list_unaccounted ctxt = let genesis_info ctxt rollup = let open Lwt_tzresult_syntax in - let* genesis_info = Store.Genesis_info.find ctxt rollup in + let* ctxt, genesis_info = Store.Genesis_info.find ctxt rollup in match genesis_info with | None -> fail (Sc_rollup_does_not_exist rollup) | Some genesis_info -> return (ctxt, genesis_info) diff --git a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml index e03b309adb36..d1cd421fbfb6 100644 --- a/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/test/unit/test_sc_rollup_storage.ml @@ -1076,7 +1076,9 @@ let test_genesis_info_of_rollup () = let level_before_rollup = (Raw_context.current_level ctxt).level in let* rollup, _genesis_hash, ctxt = lift @@ new_sc_rollup ctxt in let ctxt = Raw_context.Internal_for_tests.add_level ctxt 10 in - let* genesis_info = lift @@ Sc_rollup_storage.genesis_info ctxt rollup in + let* _ctxt, genesis_info = + lift @@ Sc_rollup_storage.genesis_info ctxt rollup + in let initial_level = genesis_info.level in Assert.equal_int32 ~loc:__LOC__ -- GitLab From 30d2f1f470ace006a08e4e64f5f9441983fc6593 Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Mon, 18 Jul 2022 23:48:05 +0200 Subject: [PATCH 4/5] Tezt: increase fees and gas limit to account for newly spent gas. Otherwise a test fails (Dal.rollup_node_dal_subscriptions). --- tezt/lib_tezos/operation_core.ml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tezt/lib_tezos/operation_core.ml b/tezt/lib_tezos/operation_core.ml index 00b3695ce35f..888cf86724a5 100644 --- a/tezt/lib_tezos/operation_core.ml +++ b/tezt/lib_tezos/operation_core.ml @@ -337,8 +337,8 @@ module Manager = struct {source; counter; fee; gas_limit; storage_limit; payload} | Reveal _ | Dal_publish_slot_header _ | Delegation _ | Sc_rollup_dal_slot_subscribe _ -> - let fee = Option.value fee ~default:1_000 in - let gas_limit = Option.value gas_limit ~default:1_040 in + let fee = Option.value fee ~default:1_450 in + let gas_limit = Option.value gas_limit ~default:1_490 in let storage_limit = Option.value storage_limit ~default:0 in {source; counter; fee; gas_limit; storage_limit; payload} -- GitLab From b7aae3e53c29d3cc341ff13647f06c36288a40c4 Mon Sep 17 00:00:00 2001 From: Nicolas Ayache Date: Thu, 21 Jul 2022 14:33:48 +0200 Subject: [PATCH 5/5] Tezt: update regression traces. --- ...ctionality (feature_flag_is_disabled).out | 22 +- ...ctionality (rollup_node_dal_subscript.out | 22 +- ... smart contract optimistic rollup node.out | 22 +- .../Alpha- consecutive commitments.out | 22 +- .../Alpha- ensure boot sector is used.out | 68 ++-- ...Alpha- get genesis info of a sc rollup.out | 22 +- ...nt hash and inbox level of a sc rollup.out | 22 +- ...ract rollup address through the client.out | 22 +- .../Alpha- list originated rollups.out | 220 +++++----- ...ances PVM state with internal messages.out | 22 +- ... node advances PVM state with messages.out | 142 +++---- ...pha- node boots into the initial state.out | 22 +- ...ommitments in the rollup node (commitm.out | 382 +++++++++--------- ...ommitments in the rollup node (first_p.out | 22 +- ...ommitments in the rollup node (handles.out | 34 +- ...ommitments in the rollup node (message.out | 382 +++++++++--------- ...ommitments in the rollup node (no_comm.out | 22 +- ...ommitments in the rollup node (node_us.out | 202 ++++----- ...ommitments in the rollup node (non_fin.out | 382 +++++++++--------- ...ommitments in the rollup node (robust_.out | 382 +++++++++--------- ...ce of inbox in the rollup node (basic).out | 46 +-- ...f inbox in the rollup node (handles_ch.out | 70 ++-- ...ce of inbox in the rollup node (stops).out | 70 ++-- ...tegy of refutation games (inbox_proof).out | 142 +++---- ...efutation games (inbox_proof_at_genesi.out | 142 +++---- ...efutation games (inbox_proof_many_empt.out | 142 +++---- ...efutation games (inbox_proof_one_empty.out | 142 +++---- ...tegy of refutation games (pvm_proof_0).out | 142 +++---- ...tegy of refutation games (pvm_proof_1).out | 142 +++---- ...tegy of refutation games (pvm_proof_2).out | 106 ++--- ...tegy of refutation games (pvm_proof_3).out | 106 ++--- ...efutation games (pvm_proof_at_genesis).out | 142 +++---- ...strategy of refutation games (timeout).out | 142 +++---- .../Alpha- originate with boot sector.out | 22 +- ...tion of a SCORU executes without error.out | 22 +- ...ssages in the inbox - check inbox size.out | 142 +++---- ...s in the inbox - current messages hash.out | 46 +-- 37 files changed, 2101 insertions(+), 2101 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 c43a1a2c70e2..05f47b09ad8e 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,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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 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 b142220dfcdd..bb5608070541 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,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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' 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 860c2905cb9f..6f3468707429 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 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 bec715105929..1ab41503c746 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out @@ -1,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state scs11VNjWyZw4Tgbvsom8epQbox86S2CKkE1UAZkXMM7Pj8MQMLzMf at inbox level 32 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 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 4e64676c4cf2..b36cd46cb875 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 string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.164 units (will add 100 for safety) -Estimated storage: 6628 bytes added (will add 20 for safety) +Estimated gas: 3109.308 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000666 + Fee to the baker: ꜩ0.000686 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6648 bytes + Gas limit: 3210 + Storage limit: 6684 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000666 - payload fees(the block proposer) ....... +ꜩ0.000666 + [PUBLIC_KEY_HASH] ... -ꜩ0.000686 + payload fees(the block proposer) ....... +ꜩ0.000686 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 2909.164 - Storage size: 6628 bytes + Consumed gas: 3109.308 + Storage size: 6664 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.657 - storage fees ........................... +ꜩ1.657 + [PUBLIC_KEY_HASH] ... -ꜩ1.666 + storage fees ........................... +ꜩ1.666 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -39,7 +39,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.582 units (will add 100 for safety) +Estimated gas: 1876.654 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,17 +50,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000453 + Fee to the baker: ꜩ0.000475 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000453 - payload fees(the block proposer) ....... +ꜩ0.000453 + [PUBLIC_KEY_HASH] ... -ꜩ0.000475 + payload fees(the block proposer) ....... +ꜩ0.000475 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.710 + Consumed gas: 1876.782 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -81,8 +81,8 @@ 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: 2909.124 units (will add 100 for safety) -Estimated storage: 6618 bytes added (will add 20 for safety) +Estimated gas: 3109.268 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]' NOT waiting for the operation to be included. @@ -92,25 +92,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000656 + Fee to the baker: ꜩ0.000676 Expected counter: 3 - Gas limit: 3010 - Storage limit: 6638 bytes + Gas limit: 3210 + Storage limit: 6674 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000656 - payload fees(the block proposer) ....... +ꜩ0.000656 + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '31' This smart contract rollup origination was successfully applied - Consumed gas: 2909.124 - Storage size: 6618 bytes + Consumed gas: 3109.268 + Storage size: 6654 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6545 - storage fees ........................... +ꜩ1.6545 + [PUBLIC_KEY_HASH] ... -ꜩ1.6635 + storage fees ........................... +ꜩ1.6635 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -119,7 +119,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["10 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.582 units (will add 100 for safety) +Estimated gas: 1876.654 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -130,17 +130,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000453 + Fee to the baker: ꜩ0.000475 Expected counter: 4 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000453 - payload fees(the block proposer) ....... +ꜩ0.000453 + [PUBLIC_KEY_HASH] ... -ꜩ0.000475 + payload fees(the block proposer) ....... +ꜩ0.000475 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.710 + Consumed gas: 1876.782 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_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 860c2905cb9f..6f3468707429 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 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 860c2905cb9f..6f3468707429 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 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 860c2905cb9f..6f3468707429 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 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 a1ad1e73b50f..5f70c62de3ca 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,31 +12,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -46,31 +46,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 2 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -80,31 +80,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 3 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -114,31 +114,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 4 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -148,31 +148,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 5 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -182,31 +182,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 6 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -216,31 +216,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 7 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -250,31 +250,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 8 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -284,31 +284,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 9 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -318,23 +318,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 10 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 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 55ecc652fb21..96b1e3fa5c56 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' 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 ebb550460466..1861a5184c5c 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -45,7 +45,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["1 6 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.701 units (will add 100 for safety) +Estimated gas: 1876.773 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -56,17 +56,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00046 + Fee to the baker: ꜩ0.000482 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00046 - payload fees(the block proposer) ....... +ꜩ0.00046 + [PUBLIC_KEY_HASH] ... -ꜩ0.000482 + payload fees(the block proposer) ....... +ꜩ0.000482 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.829 + Consumed gas: 1876.901 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -99,7 +99,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["2 8 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.923 units (will add 100 for safety) +Estimated gas: 1876.995 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -110,17 +110,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00046 + Fee to the baker: ꜩ0.000482 Expected counter: 3 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00046 - payload fees(the block proposer) ....... +ꜩ0.00046 + [PUBLIC_KEY_HASH] ... -ꜩ0.000482 + payload fees(the block proposer) ....... +ꜩ0.000482 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.051 + Consumed gas: 1877.123 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["3 10 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.147 units (will add 100 for safety) +Estimated gas: 1877.219 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000461 + Fee to the baker: ꜩ0.000483 Expected counter: 4 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000461 - payload fees(the block proposer) ....... +ꜩ0.000461 + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.147 + Consumed gas: 1877.219 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -209,7 +209,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["4 12 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.147 units (will add 100 for safety) +Estimated gas: 1877.219 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -220,17 +220,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000461 + Fee to the baker: ꜩ0.000483 Expected counter: 5 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000461 - payload fees(the block proposer) ....... +ꜩ0.000461 + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.275 + Consumed gas: 1877.347 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -265,7 +265,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["5 14 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.354 units (will add 100 for safety) +Estimated gas: 1877.426 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -276,17 +276,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000461 + Fee to the baker: ꜩ0.000483 Expected counter: 6 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000461 - payload fees(the block proposer) ....... +ꜩ0.000461 + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.354 + Consumed gas: 1877.426 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -321,7 +321,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["6 16 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.354 units (will add 100 for safety) +Estimated gas: 1877.426 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -332,17 +332,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000461 + Fee to the baker: ꜩ0.000483 Expected counter: 7 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000461 - payload fees(the block proposer) ....... +ꜩ0.000461 + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.354 + Consumed gas: 1877.426 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -377,7 +377,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["7 18 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.354 units (will add 100 for safety) +Estimated gas: 1877.426 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -388,17 +388,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000461 + Fee to the baker: ꜩ0.000483 Expected counter: 8 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000461 - payload fees(the block proposer) ....... +ꜩ0.000461 + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.354 + Consumed gas: 1877.426 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -433,7 +433,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["8 20 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.354 units (will add 100 for safety) +Estimated gas: 1877.426 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -444,17 +444,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000461 + Fee to the baker: ꜩ0.000483 Expected counter: 9 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000461 - payload fees(the block proposer) ....... +ꜩ0.000461 + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.482 + Consumed gas: 1877.554 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -490,7 +490,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["9 22 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.561 units (will add 100 for safety) +Estimated gas: 1877.633 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,17 +501,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000461 + Fee to the baker: ꜩ0.000483 Expected counter: 10 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000461 - payload fees(the block proposer) ....... +ꜩ0.000461 + [PUBLIC_KEY_HASH] ... -ꜩ0.000483 + payload fees(the block proposer) ....... +ꜩ0.000483 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.561 + Consumed gas: 1877.633 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -547,7 +547,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message '["10 24 + value"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1652.578 units (will add 100 for safety) +Estimated gas: 1877.650 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -558,17 +558,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000462 + Fee to the baker: ꜩ0.000484 Expected counter: 11 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000462 - payload fees(the block proposer) ....... +ꜩ0.000462 + [PUBLIC_KEY_HASH] ... -ꜩ0.000484 + payload fees(the block proposer) ....... +ꜩ0.000484 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.578 + Consumed gas: 1877.650 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_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 185d2d0abbd1..1b9f34822ae3 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' 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 c44f9d448fb7..1f89335d05be 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -39,7 +39,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.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,17 +50,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -78,7 +78,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.468 units (will add 100 for safety) +Estimated gas: 1877.540 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -89,17 +89,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 3 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.596 + Consumed gas: 1877.668 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -118,7 +118,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.271 units (will add 100 for safety) +Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,17 +129,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000481 + Fee to the baker: ꜩ0.000503 Expected counter: 4 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000481 - payload fees(the block proposer) ....... +ꜩ0.000481 + [PUBLIC_KEY_HASH] ... -ꜩ0.000503 + payload fees(the block proposer) ....... +ꜩ0.000503 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.271 + Consumed gas: 1878.343 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -158,7 +158,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: 1653.867 units (will add 100 for safety) +Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,17 +169,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000493 + Fee to the baker: ꜩ0.000515 Expected counter: 5 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000493 - payload fees(the block proposer) ....... +ꜩ0.000493 + [PUBLIC_KEY_HASH] ... -ꜩ0.000515 + payload fees(the block proposer) ....... +ꜩ0.000515 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.995 + Consumed gas: 1879.067 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -199,7 +199,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.670 units (will add 100 for safety) +Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,17 +210,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000505 + Fee to the baker: ꜩ0.000527 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000505 - payload fees(the block proposer) ....... +ꜩ0.000505 + [PUBLIC_KEY_HASH] ... -ꜩ0.000527 + payload fees(the block proposer) ....... +ꜩ0.000527 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.670 + Consumed gas: 1879.742 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -240,7 +240,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.266 units (will add 100 for safety) +Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,17 +251,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000517 + Fee to the baker: ꜩ0.00054 Expected counter: 7 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000517 - payload fees(the block proposer) ....... +ꜩ0.000517 + [PUBLIC_KEY_HASH] ... -ꜩ0.00054 + payload fees(the block proposer) ....... +ꜩ0.00054 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.266 + Consumed gas: 1880.338 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -281,7 +281,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: 1655.862 units (will add 100 for safety) +Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,17 +292,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000529 + Fee to the baker: ꜩ0.000552 Expected counter: 8 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000529 - payload fees(the block proposer) ....... +ꜩ0.000529 + [PUBLIC_KEY_HASH] ... -ꜩ0.000552 + payload fees(the block proposer) ....... +ꜩ0.000552 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.862 + Consumed gas: 1880.934 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -322,7 +322,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.458 units (will add 100 for safety) +Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,17 +333,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000541 + Fee to the baker: ꜩ0.000564 Expected counter: 9 - Gas limit: 1757 + Gas limit: 1982 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000541 - payload fees(the block proposer) ....... +ꜩ0.000541 + [PUBLIC_KEY_HASH] ... -ꜩ0.000564 + payload fees(the block proposer) ....... +ꜩ0.000564 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.586 + Consumed gas: 1881.658 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -364,7 +364,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.261 units (will add 100 for safety) +Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,17 +375,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000553 + Fee to the baker: ꜩ0.000576 Expected counter: 10 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000553 - payload fees(the block proposer) ....... +ꜩ0.000553 + [PUBLIC_KEY_HASH] ... -ꜩ0.000576 + payload fees(the block proposer) ....... +ꜩ0.000576 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.261 + Consumed gas: 1882.333 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -406,7 +406,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: 1657.857 units (will add 100 for safety) +Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,17 +417,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000565 + Fee to the baker: ꜩ0.000588 Expected counter: 11 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000565 - payload fees(the block proposer) ....... +ꜩ0.000565 + [PUBLIC_KEY_HASH] ... -ꜩ0.000588 + payload fees(the block proposer) ....... +ꜩ0.000588 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.857 + Consumed gas: 1882.929 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -448,7 +448,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.453 units (will add 100 for safety) +Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,17 +459,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000577 + Fee to the baker: ꜩ0.0006 Expected counter: 12 - Gas limit: 1759 + Gas limit: 1984 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000577 - payload fees(the block proposer) ....... +ꜩ0.000577 + [PUBLIC_KEY_HASH] ... -ꜩ0.0006 + payload fees(the block proposer) ....... +ꜩ0.0006 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.453 + Consumed gas: 1883.525 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -490,7 +490,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.049 units (will add 100 for safety) +Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,17 +501,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000589 + Fee to the baker: ꜩ0.000612 Expected counter: 13 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000589 - payload fees(the block proposer) ....... +ꜩ0.000589 + [PUBLIC_KEY_HASH] ... -ꜩ0.000612 + payload fees(the block proposer) ....... +ꜩ0.000612 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.049 + Consumed gas: 1884.121 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -532,7 +532,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: 1659.645 units (will add 100 for safety) +Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,17 +543,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000601 + Fee to the baker: ꜩ0.000624 Expected counter: 14 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000601 - payload fees(the block proposer) ....... +ꜩ0.000601 + [PUBLIC_KEY_HASH] ... -ꜩ0.000624 + payload fees(the block proposer) ....... +ꜩ0.000624 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.645 + Consumed gas: 1884.717 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -574,7 +574,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.241 units (will add 100 for safety) +Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,17 +585,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000614 + Fee to the baker: ꜩ0.000636 Expected counter: 15 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000636 + payload fees(the block proposer) ....... +ꜩ0.000636 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.241 + Consumed gas: 1885.313 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -616,7 +616,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: 1660.837 units (will add 100 for safety) +Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,17 +627,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000626 + Fee to the baker: ꜩ0.000648 Expected counter: 16 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000626 - payload fees(the block proposer) ....... +ꜩ0.000626 + [PUBLIC_KEY_HASH] ... -ꜩ0.000648 + payload fees(the block proposer) ....... +ꜩ0.000648 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.837 + Consumed gas: 1885.909 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -658,7 +658,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: 1661.433 units (will add 100 for safety) +Estimated gas: 1886.505 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,17 +669,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000638 + Fee to the baker: ꜩ0.00066 Expected counter: 17 - Gas limit: 1762 + Gas limit: 1987 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000638 - payload fees(the block proposer) ....... +ꜩ0.000638 + [PUBLIC_KEY_HASH] ... -ꜩ0.00066 + payload fees(the block proposer) ....... +ꜩ0.00066 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1661.561 + Consumed gas: 1886.633 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -701,7 +701,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: 1662.236 units (will add 100 for safety) +Estimated gas: 1887.308 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,17 +712,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00065 + Fee to the baker: ꜩ0.000672 Expected counter: 18 - Gas limit: 1763 + Gas limit: 1988 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00065 - payload fees(the block proposer) ....... +ꜩ0.00065 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.236 + Consumed gas: 1887.308 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -744,7 +744,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: 1662.832 units (will add 100 for safety) +Estimated gas: 1887.904 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,17 +755,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000662 + Fee to the baker: ꜩ0.000684 Expected counter: 19 - Gas limit: 1763 + Gas limit: 1988 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000662 - payload fees(the block proposer) ....... +ꜩ0.000662 + [PUBLIC_KEY_HASH] ... -ꜩ0.000684 + payload fees(the block proposer) ....... +ꜩ0.000684 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.832 + Consumed gas: 1887.904 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -787,7 +787,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: 1663.428 units (will add 100 for safety) +Estimated gas: 1888.500 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,17 +798,17 @@ and/or an external block explorer to make 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.000696 Expected counter: 20 - Gas limit: 1764 + Gas limit: 1989 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000696 + payload fees(the block proposer) ....... +ꜩ0.000696 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.428 + Consumed gas: 1888.500 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -830,7 +830,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.024 units (will add 100 for safety) +Estimated gas: 1889.096 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,17 +841,17 @@ and/or an external block explorer to make 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.000708 Expected counter: 21 - Gas limit: 1765 + Gas limit: 1990 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000708 + payload fees(the block proposer) ....... +ꜩ0.000708 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.024 + Consumed gas: 1889.096 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -873,7 +873,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: 1664.620 units (will add 100 for safety) +Estimated gas: 1889.692 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,17 +884,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000698 + Fee to the baker: ꜩ0.00072 Expected counter: 22 - Gas limit: 1765 + Gas limit: 1990 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000698 - payload fees(the block proposer) ....... +ꜩ0.000698 + [PUBLIC_KEY_HASH] ... -ꜩ0.00072 + payload fees(the block proposer) ....... +ꜩ0.00072 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.620 + Consumed gas: 1889.692 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -916,7 +916,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: 1665.216 units (will add 100 for safety) +Estimated gas: 1890.288 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,17 +927,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00071 + Fee to the baker: ꜩ0.000733 Expected counter: 23 - Gas limit: 1766 + Gas limit: 1991 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00071 - payload fees(the block proposer) ....... +ꜩ0.00071 + [PUBLIC_KEY_HASH] ... -ꜩ0.000733 + payload fees(the block proposer) ....... +ꜩ0.000733 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.216 + Consumed gas: 1890.288 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -959,7 +959,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: 1665.812 units (will add 100 for safety) +Estimated gas: 1890.884 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,17 +970,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000722 + Fee to the baker: ꜩ0.000745 Expected counter: 24 - Gas limit: 1766 + Gas limit: 1991 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000722 - payload fees(the block proposer) ....... +ꜩ0.000722 + [PUBLIC_KEY_HASH] ... -ꜩ0.000745 + payload fees(the block proposer) ....... +ꜩ0.000745 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.812 + Consumed gas: 1890.884 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1002,7 +1002,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: 1666.408 units (will add 100 for safety) +Estimated gas: 1891.480 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,17 +1013,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000734 + Fee to the baker: ꜩ0.000757 Expected counter: 25 - Gas limit: 1767 + Gas limit: 1992 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000734 - payload fees(the block proposer) ....... +ꜩ0.000734 + [PUBLIC_KEY_HASH] ... -ꜩ0.000757 + payload fees(the block proposer) ....... +ꜩ0.000757 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.408 + Consumed gas: 1891.480 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1045,7 +1045,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: 1667.004 units (will add 100 for safety) +Estimated gas: 1892.076 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,17 +1056,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000746 + Fee to the baker: ꜩ0.000769 Expected counter: 26 - Gas limit: 1768 + Gas limit: 1993 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000746 - payload fees(the block proposer) ....... +ꜩ0.000746 + [PUBLIC_KEY_HASH] ... -ꜩ0.000769 + payload fees(the block proposer) ....... +ꜩ0.000769 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.004 + Consumed gas: 1892.076 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1088,7 +1088,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: 1667.600 units (will add 100 for safety) +Estimated gas: 1892.672 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,17 +1099,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000758 + Fee to the baker: ꜩ0.000781 Expected counter: 27 - Gas limit: 1768 + Gas limit: 1993 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000758 - payload fees(the block proposer) ....... +ꜩ0.000758 + [PUBLIC_KEY_HASH] ... -ꜩ0.000781 + payload fees(the block proposer) ....... +ꜩ0.000781 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.600 + Consumed gas: 1892.672 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1131,7 +1131,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: 1668.196 units (will add 100 for safety) +Estimated gas: 1893.268 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,17 +1142,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00077 + Fee to the baker: ꜩ0.000793 Expected counter: 28 - Gas limit: 1769 + Gas limit: 1994 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00077 - payload fees(the block proposer) ....... +ꜩ0.00077 + [PUBLIC_KEY_HASH] ... -ꜩ0.000793 + payload fees(the block proposer) ....... +ꜩ0.000793 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.196 + Consumed gas: 1893.268 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1174,7 +1174,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: 1668.792 units (will add 100 for safety) +Estimated gas: 1893.864 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,17 +1185,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000782 + Fee to the baker: ꜩ0.000805 Expected counter: 29 - Gas limit: 1769 + Gas limit: 1994 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000782 - payload fees(the block proposer) ....... +ꜩ0.000782 + [PUBLIC_KEY_HASH] ... -ꜩ0.000805 + payload fees(the block proposer) ....... +ꜩ0.000805 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.792 + Consumed gas: 1893.864 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1217,7 +1217,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: 1669.388 units (will add 100 for safety) +Estimated gas: 1894.460 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,17 +1228,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000794 + Fee to the baker: ꜩ0.000817 Expected counter: 30 - Gas limit: 1770 + Gas limit: 1995 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000794 - payload fees(the block proposer) ....... +ꜩ0.000794 + [PUBLIC_KEY_HASH] ... -ꜩ0.000817 + payload fees(the block proposer) ....... +ꜩ0.000817 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.388 + Consumed gas: 1894.460 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1260,7 +1260,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: 1669.984 units (will add 100 for safety) +Estimated gas: 1895.056 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,17 +1271,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000806 + Fee to the baker: ꜩ0.000829 Expected counter: 31 - Gas limit: 1770 + Gas limit: 1996 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000806 - payload fees(the block proposer) ....... +ꜩ0.000806 + [PUBLIC_KEY_HASH] ... -ꜩ0.000829 + payload fees(the block proposer) ....... +ꜩ0.000829 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.984 + Consumed gas: 1895.056 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 32 current messages hash = [SC_ROLLUP_INBOX_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 4599635f046a..6076dcad5f55 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' 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 6abf02a1123a..59c907b43afa 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -39,7 +39,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.778 units (will add 100 for safety) +Estimated gas: 1876.850 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,17 +50,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 32 current messages hash = [SC_ROLLUP_INBOX_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 468663f33378..ebf6a368bbb1 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -39,7 +39,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.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,17 +50,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -78,7 +78,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.468 units (will add 100 for safety) +Estimated gas: 1877.540 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -89,17 +89,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 3 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.596 + Consumed gas: 1877.668 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -118,7 +118,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.271 units (will add 100 for safety) +Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,17 +129,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000481 + Fee to the baker: ꜩ0.000503 Expected counter: 4 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000481 - payload fees(the block proposer) ....... +ꜩ0.000481 + [PUBLIC_KEY_HASH] ... -ꜩ0.000503 + payload fees(the block proposer) ....... +ꜩ0.000503 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.271 + Consumed gas: 1878.343 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -158,7 +158,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: 1653.867 units (will add 100 for safety) +Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,17 +169,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000493 + Fee to the baker: ꜩ0.000515 Expected counter: 5 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000493 - payload fees(the block proposer) ....... +ꜩ0.000493 + [PUBLIC_KEY_HASH] ... -ꜩ0.000515 + payload fees(the block proposer) ....... +ꜩ0.000515 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.995 + Consumed gas: 1879.067 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -199,7 +199,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.670 units (will add 100 for safety) +Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,17 +210,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000505 + Fee to the baker: ꜩ0.000527 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000505 - payload fees(the block proposer) ....... +ꜩ0.000505 + [PUBLIC_KEY_HASH] ... -ꜩ0.000527 + payload fees(the block proposer) ....... +ꜩ0.000527 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.670 + Consumed gas: 1879.742 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -240,7 +240,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.266 units (will add 100 for safety) +Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,17 +251,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000517 + Fee to the baker: ꜩ0.00054 Expected counter: 7 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000517 - payload fees(the block proposer) ....... +ꜩ0.000517 + [PUBLIC_KEY_HASH] ... -ꜩ0.00054 + payload fees(the block proposer) ....... +ꜩ0.00054 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.266 + Consumed gas: 1880.338 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -281,7 +281,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: 1655.862 units (will add 100 for safety) +Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,17 +292,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000529 + Fee to the baker: ꜩ0.000552 Expected counter: 8 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000529 - payload fees(the block proposer) ....... +ꜩ0.000529 + [PUBLIC_KEY_HASH] ... -ꜩ0.000552 + payload fees(the block proposer) ....... +ꜩ0.000552 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.862 + Consumed gas: 1880.934 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -322,7 +322,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.458 units (will add 100 for safety) +Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,17 +333,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000541 + Fee to the baker: ꜩ0.000564 Expected counter: 9 - Gas limit: 1757 + Gas limit: 1982 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000541 - payload fees(the block proposer) ....... +ꜩ0.000541 + [PUBLIC_KEY_HASH] ... -ꜩ0.000564 + payload fees(the block proposer) ....... +ꜩ0.000564 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.586 + Consumed gas: 1881.658 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -364,7 +364,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.261 units (will add 100 for safety) +Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,17 +375,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000553 + Fee to the baker: ꜩ0.000576 Expected counter: 10 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000553 - payload fees(the block proposer) ....... +ꜩ0.000553 + [PUBLIC_KEY_HASH] ... -ꜩ0.000576 + payload fees(the block proposer) ....... +ꜩ0.000576 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.261 + Consumed gas: 1882.333 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -406,7 +406,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: 1657.857 units (will add 100 for safety) +Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,17 +417,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000565 + Fee to the baker: ꜩ0.000588 Expected counter: 11 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000565 - payload fees(the block proposer) ....... +ꜩ0.000565 + [PUBLIC_KEY_HASH] ... -ꜩ0.000588 + payload fees(the block proposer) ....... +ꜩ0.000588 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.857 + Consumed gas: 1882.929 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -448,7 +448,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.453 units (will add 100 for safety) +Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,17 +459,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000577 + Fee to the baker: ꜩ0.0006 Expected counter: 12 - Gas limit: 1759 + Gas limit: 1984 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000577 - payload fees(the block proposer) ....... +ꜩ0.000577 + [PUBLIC_KEY_HASH] ... -ꜩ0.0006 + payload fees(the block proposer) ....... +ꜩ0.0006 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.453 + Consumed gas: 1883.525 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -490,7 +490,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.049 units (will add 100 for safety) +Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,17 +501,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000589 + Fee to the baker: ꜩ0.000612 Expected counter: 13 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000589 - payload fees(the block proposer) ....... +ꜩ0.000589 + [PUBLIC_KEY_HASH] ... -ꜩ0.000612 + payload fees(the block proposer) ....... +ꜩ0.000612 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.049 + Consumed gas: 1884.121 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -532,7 +532,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: 1659.645 units (will add 100 for safety) +Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,17 +543,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000601 + Fee to the baker: ꜩ0.000624 Expected counter: 14 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000601 - payload fees(the block proposer) ....... +ꜩ0.000601 + [PUBLIC_KEY_HASH] ... -ꜩ0.000624 + payload fees(the block proposer) ....... +ꜩ0.000624 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.645 + Consumed gas: 1884.717 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -574,7 +574,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.241 units (will add 100 for safety) +Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,17 +585,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000614 + Fee to the baker: ꜩ0.000636 Expected counter: 15 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000636 + payload fees(the block proposer) ....... +ꜩ0.000636 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.241 + Consumed gas: 1885.313 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -616,7 +616,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: 1660.837 units (will add 100 for safety) +Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,17 +627,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000626 + Fee to the baker: ꜩ0.000648 Expected counter: 16 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000626 - payload fees(the block proposer) ....... +ꜩ0.000626 + [PUBLIC_KEY_HASH] ... -ꜩ0.000648 + payload fees(the block proposer) ....... +ꜩ0.000648 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.837 + Consumed gas: 1885.909 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -658,7 +658,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: 1661.433 units (will add 100 for safety) +Estimated gas: 1886.505 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,17 +669,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000638 + Fee to the baker: ꜩ0.00066 Expected counter: 17 - Gas limit: 1762 + Gas limit: 1987 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000638 - payload fees(the block proposer) ....... +ꜩ0.000638 + [PUBLIC_KEY_HASH] ... -ꜩ0.00066 + payload fees(the block proposer) ....... +ꜩ0.00066 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1661.561 + Consumed gas: 1886.633 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -701,7 +701,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: 1662.236 units (will add 100 for safety) +Estimated gas: 1887.308 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,17 +712,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00065 + Fee to the baker: ꜩ0.000672 Expected counter: 18 - Gas limit: 1763 + Gas limit: 1988 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00065 - payload fees(the block proposer) ....... +ꜩ0.00065 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.236 + Consumed gas: 1887.308 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -744,7 +744,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: 1662.832 units (will add 100 for safety) +Estimated gas: 1887.904 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,17 +755,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000662 + Fee to the baker: ꜩ0.000684 Expected counter: 19 - Gas limit: 1763 + Gas limit: 1988 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000662 - payload fees(the block proposer) ....... +ꜩ0.000662 + [PUBLIC_KEY_HASH] ... -ꜩ0.000684 + payload fees(the block proposer) ....... +ꜩ0.000684 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.832 + Consumed gas: 1887.904 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -787,7 +787,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: 1663.428 units (will add 100 for safety) +Estimated gas: 1888.500 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,17 +798,17 @@ and/or an external block explorer to make 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.000696 Expected counter: 20 - Gas limit: 1764 + Gas limit: 1989 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000696 + payload fees(the block proposer) ....... +ꜩ0.000696 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.428 + Consumed gas: 1888.500 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -830,7 +830,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.024 units (will add 100 for safety) +Estimated gas: 1889.096 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,17 +841,17 @@ and/or an external block explorer to make 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.000708 Expected counter: 21 - Gas limit: 1765 + Gas limit: 1990 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000708 + payload fees(the block proposer) ....... +ꜩ0.000708 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.024 + Consumed gas: 1889.096 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -873,7 +873,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: 1664.620 units (will add 100 for safety) +Estimated gas: 1889.692 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,17 +884,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000698 + Fee to the baker: ꜩ0.00072 Expected counter: 22 - Gas limit: 1765 + Gas limit: 1990 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000698 - payload fees(the block proposer) ....... +ꜩ0.000698 + [PUBLIC_KEY_HASH] ... -ꜩ0.00072 + payload fees(the block proposer) ....... +ꜩ0.00072 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.620 + Consumed gas: 1889.692 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -916,7 +916,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: 1665.216 units (will add 100 for safety) +Estimated gas: 1890.288 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,17 +927,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00071 + Fee to the baker: ꜩ0.000733 Expected counter: 23 - Gas limit: 1766 + Gas limit: 1991 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00071 - payload fees(the block proposer) ....... +ꜩ0.00071 + [PUBLIC_KEY_HASH] ... -ꜩ0.000733 + payload fees(the block proposer) ....... +ꜩ0.000733 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.216 + Consumed gas: 1890.288 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -959,7 +959,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: 1665.812 units (will add 100 for safety) +Estimated gas: 1890.884 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,17 +970,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000722 + Fee to the baker: ꜩ0.000745 Expected counter: 24 - Gas limit: 1766 + Gas limit: 1991 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000722 - payload fees(the block proposer) ....... +ꜩ0.000722 + [PUBLIC_KEY_HASH] ... -ꜩ0.000745 + payload fees(the block proposer) ....... +ꜩ0.000745 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.812 + Consumed gas: 1890.884 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1002,7 +1002,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: 1666.408 units (will add 100 for safety) +Estimated gas: 1891.480 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,17 +1013,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000734 + Fee to the baker: ꜩ0.000757 Expected counter: 25 - Gas limit: 1767 + Gas limit: 1992 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000734 - payload fees(the block proposer) ....... +ꜩ0.000734 + [PUBLIC_KEY_HASH] ... -ꜩ0.000757 + payload fees(the block proposer) ....... +ꜩ0.000757 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.408 + Consumed gas: 1891.480 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1045,7 +1045,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: 1667.004 units (will add 100 for safety) +Estimated gas: 1892.076 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,17 +1056,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000746 + Fee to the baker: ꜩ0.000769 Expected counter: 26 - Gas limit: 1768 + Gas limit: 1993 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000746 - payload fees(the block proposer) ....... +ꜩ0.000746 + [PUBLIC_KEY_HASH] ... -ꜩ0.000769 + payload fees(the block proposer) ....... +ꜩ0.000769 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.004 + Consumed gas: 1892.076 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1088,7 +1088,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: 1667.600 units (will add 100 for safety) +Estimated gas: 1892.672 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,17 +1099,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000758 + Fee to the baker: ꜩ0.000781 Expected counter: 27 - Gas limit: 1768 + Gas limit: 1993 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000758 - payload fees(the block proposer) ....... +ꜩ0.000758 + [PUBLIC_KEY_HASH] ... -ꜩ0.000781 + payload fees(the block proposer) ....... +ꜩ0.000781 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.600 + Consumed gas: 1892.672 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1131,7 +1131,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: 1668.196 units (will add 100 for safety) +Estimated gas: 1893.268 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,17 +1142,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00077 + Fee to the baker: ꜩ0.000793 Expected counter: 28 - Gas limit: 1769 + Gas limit: 1994 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00077 - payload fees(the block proposer) ....... +ꜩ0.00077 + [PUBLIC_KEY_HASH] ... -ꜩ0.000793 + payload fees(the block proposer) ....... +ꜩ0.000793 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.196 + Consumed gas: 1893.268 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1174,7 +1174,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: 1668.792 units (will add 100 for safety) +Estimated gas: 1893.864 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,17 +1185,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000782 + Fee to the baker: ꜩ0.000805 Expected counter: 29 - Gas limit: 1769 + Gas limit: 1994 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000782 - payload fees(the block proposer) ....... +ꜩ0.000782 + [PUBLIC_KEY_HASH] ... -ꜩ0.000805 + payload fees(the block proposer) ....... +ꜩ0.000805 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.792 + Consumed gas: 1893.864 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1217,7 +1217,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: 1669.388 units (will add 100 for safety) +Estimated gas: 1894.460 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,17 +1228,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000794 + Fee to the baker: ꜩ0.000817 Expected counter: 30 - Gas limit: 1770 + Gas limit: 1995 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000794 - payload fees(the block proposer) ....... +ꜩ0.000794 + [PUBLIC_KEY_HASH] ... -ꜩ0.000817 + payload fees(the block proposer) ....... +ꜩ0.000817 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.388 + Consumed gas: 1894.460 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1260,7 +1260,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: 1669.984 units (will add 100 for safety) +Estimated gas: 1895.056 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,17 +1271,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000806 + Fee to the baker: ꜩ0.000829 Expected counter: 31 - Gas limit: 1770 + Gas limit: 1996 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000806 - payload fees(the block proposer) ....... +ꜩ0.000806 + [PUBLIC_KEY_HASH] ... -ꜩ0.000829 + payload fees(the block proposer) ....... +ꜩ0.000829 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.984 + Consumed gas: 1895.056 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 32 current messages hash = [SC_ROLLUP_INBOX_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 a946f87b372b..719a3ebe5d13 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' 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 ee1f5c21943d..29d4ee71be8f 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -39,7 +39,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.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,17 +50,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -78,7 +78,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.468 units (will add 100 for safety) +Estimated gas: 1877.540 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -89,17 +89,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 3 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.596 + Consumed gas: 1877.668 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -118,7 +118,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.271 units (will add 100 for safety) +Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,17 +129,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000481 + Fee to the baker: ꜩ0.000503 Expected counter: 4 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000481 - payload fees(the block proposer) ....... +ꜩ0.000481 + [PUBLIC_KEY_HASH] ... -ꜩ0.000503 + payload fees(the block proposer) ....... +ꜩ0.000503 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.271 + Consumed gas: 1878.343 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -158,7 +158,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: 1653.867 units (will add 100 for safety) +Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,17 +169,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000493 + Fee to the baker: ꜩ0.000515 Expected counter: 5 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000493 - payload fees(the block proposer) ....... +ꜩ0.000493 + [PUBLIC_KEY_HASH] ... -ꜩ0.000515 + payload fees(the block proposer) ....... +ꜩ0.000515 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.995 + Consumed gas: 1879.067 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -199,7 +199,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.670 units (will add 100 for safety) +Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,17 +210,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000505 + Fee to the baker: ꜩ0.000527 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000505 - payload fees(the block proposer) ....... +ꜩ0.000505 + [PUBLIC_KEY_HASH] ... -ꜩ0.000527 + payload fees(the block proposer) ....... +ꜩ0.000527 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.670 + Consumed gas: 1879.742 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -240,7 +240,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.266 units (will add 100 for safety) +Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,17 +251,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000517 + Fee to the baker: ꜩ0.00054 Expected counter: 7 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000517 - payload fees(the block proposer) ....... +ꜩ0.000517 + [PUBLIC_KEY_HASH] ... -ꜩ0.00054 + payload fees(the block proposer) ....... +ꜩ0.00054 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.266 + Consumed gas: 1880.338 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -281,7 +281,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: 1655.862 units (will add 100 for safety) +Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,17 +292,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000529 + Fee to the baker: ꜩ0.000552 Expected counter: 8 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000529 - payload fees(the block proposer) ....... +ꜩ0.000529 + [PUBLIC_KEY_HASH] ... -ꜩ0.000552 + payload fees(the block proposer) ....... +ꜩ0.000552 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.862 + Consumed gas: 1880.934 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -322,7 +322,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.458 units (will add 100 for safety) +Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,17 +333,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000541 + Fee to the baker: ꜩ0.000564 Expected counter: 9 - Gas limit: 1757 + Gas limit: 1982 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000541 - payload fees(the block proposer) ....... +ꜩ0.000541 + [PUBLIC_KEY_HASH] ... -ꜩ0.000564 + payload fees(the block proposer) ....... +ꜩ0.000564 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.586 + Consumed gas: 1881.658 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -364,7 +364,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.261 units (will add 100 for safety) +Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,17 +375,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000553 + Fee to the baker: ꜩ0.000576 Expected counter: 10 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000553 - payload fees(the block proposer) ....... +ꜩ0.000553 + [PUBLIC_KEY_HASH] ... -ꜩ0.000576 + payload fees(the block proposer) ....... +ꜩ0.000576 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.261 + Consumed gas: 1882.333 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -406,7 +406,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: 1657.857 units (will add 100 for safety) +Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,17 +417,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000565 + Fee to the baker: ꜩ0.000588 Expected counter: 11 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000565 - payload fees(the block proposer) ....... +ꜩ0.000565 + [PUBLIC_KEY_HASH] ... -ꜩ0.000588 + payload fees(the block proposer) ....... +ꜩ0.000588 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.857 + Consumed gas: 1882.929 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -448,7 +448,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.453 units (will add 100 for safety) +Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,17 +459,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000577 + Fee to the baker: ꜩ0.0006 Expected counter: 12 - Gas limit: 1759 + Gas limit: 1984 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000577 - payload fees(the block proposer) ....... +ꜩ0.000577 + [PUBLIC_KEY_HASH] ... -ꜩ0.0006 + payload fees(the block proposer) ....... +ꜩ0.0006 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.453 + Consumed gas: 1883.525 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -490,7 +490,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.049 units (will add 100 for safety) +Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,17 +501,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000589 + Fee to the baker: ꜩ0.000612 Expected counter: 13 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000589 - payload fees(the block proposer) ....... +ꜩ0.000589 + [PUBLIC_KEY_HASH] ... -ꜩ0.000612 + payload fees(the block proposer) ....... +ꜩ0.000612 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.049 + Consumed gas: 1884.121 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -532,7 +532,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: 1659.645 units (will add 100 for safety) +Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,17 +543,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000601 + Fee to the baker: ꜩ0.000624 Expected counter: 14 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000601 - payload fees(the block proposer) ....... +ꜩ0.000601 + [PUBLIC_KEY_HASH] ... -ꜩ0.000624 + payload fees(the block proposer) ....... +ꜩ0.000624 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.645 + Consumed gas: 1884.717 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -574,7 +574,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.241 units (will add 100 for safety) +Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,17 +585,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000614 + Fee to the baker: ꜩ0.000636 Expected counter: 15 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000636 + payload fees(the block proposer) ....... +ꜩ0.000636 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.241 + Consumed gas: 1885.313 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -616,7 +616,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: 1660.837 units (will add 100 for safety) +Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,17 +627,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000626 + Fee to the baker: ꜩ0.000648 Expected counter: 16 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000626 - payload fees(the block proposer) ....... +ꜩ0.000626 + [PUBLIC_KEY_HASH] ... -ꜩ0.000648 + payload fees(the block proposer) ....... +ꜩ0.000648 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.837 + Consumed gas: 1885.909 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_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 72d35a218c4c..7a68cb0ade56 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -39,7 +39,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.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,17 +50,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -78,7 +78,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.468 units (will add 100 for safety) +Estimated gas: 1877.540 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -89,17 +89,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 3 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.596 + Consumed gas: 1877.668 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -118,7 +118,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.271 units (will add 100 for safety) +Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,17 +129,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000481 + Fee to the baker: ꜩ0.000503 Expected counter: 4 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000481 - payload fees(the block proposer) ....... +ꜩ0.000481 + [PUBLIC_KEY_HASH] ... -ꜩ0.000503 + payload fees(the block proposer) ....... +ꜩ0.000503 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.271 + Consumed gas: 1878.343 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -158,7 +158,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: 1653.867 units (will add 100 for safety) +Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,17 +169,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000493 + Fee to the baker: ꜩ0.000515 Expected counter: 5 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000493 - payload fees(the block proposer) ....... +ꜩ0.000493 + [PUBLIC_KEY_HASH] ... -ꜩ0.000515 + payload fees(the block proposer) ....... +ꜩ0.000515 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.995 + Consumed gas: 1879.067 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -199,7 +199,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.670 units (will add 100 for safety) +Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,17 +210,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000505 + Fee to the baker: ꜩ0.000527 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000505 - payload fees(the block proposer) ....... +ꜩ0.000505 + [PUBLIC_KEY_HASH] ... -ꜩ0.000527 + payload fees(the block proposer) ....... +ꜩ0.000527 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.670 + Consumed gas: 1879.742 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -240,7 +240,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.266 units (will add 100 for safety) +Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,17 +251,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000517 + Fee to the baker: ꜩ0.00054 Expected counter: 7 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000517 - payload fees(the block proposer) ....... +ꜩ0.000517 + [PUBLIC_KEY_HASH] ... -ꜩ0.00054 + payload fees(the block proposer) ....... +ꜩ0.00054 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.266 + Consumed gas: 1880.338 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -281,7 +281,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: 1655.862 units (will add 100 for safety) +Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,17 +292,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000529 + Fee to the baker: ꜩ0.000552 Expected counter: 8 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000529 - payload fees(the block proposer) ....... +ꜩ0.000529 + [PUBLIC_KEY_HASH] ... -ꜩ0.000552 + payload fees(the block proposer) ....... +ꜩ0.000552 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.862 + Consumed gas: 1880.934 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -322,7 +322,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.458 units (will add 100 for safety) +Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,17 +333,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000541 + Fee to the baker: ꜩ0.000564 Expected counter: 9 - Gas limit: 1757 + Gas limit: 1982 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000541 - payload fees(the block proposer) ....... +ꜩ0.000541 + [PUBLIC_KEY_HASH] ... -ꜩ0.000564 + payload fees(the block proposer) ....... +ꜩ0.000564 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.586 + Consumed gas: 1881.658 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -364,7 +364,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.261 units (will add 100 for safety) +Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,17 +375,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000553 + Fee to the baker: ꜩ0.000576 Expected counter: 10 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000553 - payload fees(the block proposer) ....... +ꜩ0.000553 + [PUBLIC_KEY_HASH] ... -ꜩ0.000576 + payload fees(the block proposer) ....... +ꜩ0.000576 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.261 + Consumed gas: 1882.333 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -406,7 +406,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: 1657.857 units (will add 100 for safety) +Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,17 +417,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000565 + Fee to the baker: ꜩ0.000588 Expected counter: 11 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000565 - payload fees(the block proposer) ....... +ꜩ0.000565 + [PUBLIC_KEY_HASH] ... -ꜩ0.000588 + payload fees(the block proposer) ....... +ꜩ0.000588 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.857 + Consumed gas: 1882.929 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -448,7 +448,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.453 units (will add 100 for safety) +Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,17 +459,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000577 + Fee to the baker: ꜩ0.0006 Expected counter: 12 - Gas limit: 1759 + Gas limit: 1984 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000577 - payload fees(the block proposer) ....... +ꜩ0.000577 + [PUBLIC_KEY_HASH] ... -ꜩ0.0006 + payload fees(the block proposer) ....... +ꜩ0.0006 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.453 + Consumed gas: 1883.525 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -490,7 +490,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.049 units (will add 100 for safety) +Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,17 +501,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000589 + Fee to the baker: ꜩ0.000612 Expected counter: 13 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000589 - payload fees(the block proposer) ....... +ꜩ0.000589 + [PUBLIC_KEY_HASH] ... -ꜩ0.000612 + payload fees(the block proposer) ....... +ꜩ0.000612 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.049 + Consumed gas: 1884.121 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -532,7 +532,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: 1659.645 units (will add 100 for safety) +Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,17 +543,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000601 + Fee to the baker: ꜩ0.000624 Expected counter: 14 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000601 - payload fees(the block proposer) ....... +ꜩ0.000601 + [PUBLIC_KEY_HASH] ... -ꜩ0.000624 + payload fees(the block proposer) ....... +ꜩ0.000624 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.645 + Consumed gas: 1884.717 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -574,7 +574,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.241 units (will add 100 for safety) +Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,17 +585,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000614 + Fee to the baker: ꜩ0.000636 Expected counter: 15 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000636 + payload fees(the block proposer) ....... +ꜩ0.000636 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.241 + Consumed gas: 1885.313 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -616,7 +616,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: 1660.837 units (will add 100 for safety) +Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,17 +627,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000626 + Fee to the baker: ꜩ0.000648 Expected counter: 16 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000626 - payload fees(the block proposer) ....... +ꜩ0.000626 + [PUBLIC_KEY_HASH] ... -ꜩ0.000648 + payload fees(the block proposer) ....... +ꜩ0.000648 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.837 + Consumed gas: 1885.909 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -658,7 +658,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: 1661.433 units (will add 100 for safety) +Estimated gas: 1886.505 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,17 +669,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000638 + Fee to the baker: ꜩ0.00066 Expected counter: 17 - Gas limit: 1762 + Gas limit: 1987 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000638 - payload fees(the block proposer) ....... +ꜩ0.000638 + [PUBLIC_KEY_HASH] ... -ꜩ0.00066 + payload fees(the block proposer) ....... +ꜩ0.00066 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1661.561 + Consumed gas: 1886.633 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -701,7 +701,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: 1662.236 units (will add 100 for safety) +Estimated gas: 1887.308 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,17 +712,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00065 + Fee to the baker: ꜩ0.000672 Expected counter: 18 - Gas limit: 1763 + Gas limit: 1988 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00065 - payload fees(the block proposer) ....... +ꜩ0.00065 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.236 + Consumed gas: 1887.308 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -744,7 +744,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: 1662.832 units (will add 100 for safety) +Estimated gas: 1887.904 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,17 +755,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000662 + Fee to the baker: ꜩ0.000684 Expected counter: 19 - Gas limit: 1763 + Gas limit: 1988 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000662 - payload fees(the block proposer) ....... +ꜩ0.000662 + [PUBLIC_KEY_HASH] ... -ꜩ0.000684 + payload fees(the block proposer) ....... +ꜩ0.000684 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.832 + Consumed gas: 1887.904 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -787,7 +787,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: 1663.428 units (will add 100 for safety) +Estimated gas: 1888.500 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,17 +798,17 @@ and/or an external block explorer to make 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.000696 Expected counter: 20 - Gas limit: 1764 + Gas limit: 1989 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000696 + payload fees(the block proposer) ....... +ꜩ0.000696 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.428 + Consumed gas: 1888.500 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -830,7 +830,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.024 units (will add 100 for safety) +Estimated gas: 1889.096 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,17 +841,17 @@ and/or an external block explorer to make 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.000708 Expected counter: 21 - Gas limit: 1765 + Gas limit: 1990 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000708 + payload fees(the block proposer) ....... +ꜩ0.000708 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.024 + Consumed gas: 1889.096 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -873,7 +873,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: 1664.620 units (will add 100 for safety) +Estimated gas: 1889.692 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,17 +884,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000698 + Fee to the baker: ꜩ0.00072 Expected counter: 22 - Gas limit: 1765 + Gas limit: 1990 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000698 - payload fees(the block proposer) ....... +ꜩ0.000698 + [PUBLIC_KEY_HASH] ... -ꜩ0.00072 + payload fees(the block proposer) ....... +ꜩ0.00072 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.620 + Consumed gas: 1889.692 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -916,7 +916,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: 1665.216 units (will add 100 for safety) +Estimated gas: 1890.288 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,17 +927,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00071 + Fee to the baker: ꜩ0.000733 Expected counter: 23 - Gas limit: 1766 + Gas limit: 1991 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00071 - payload fees(the block proposer) ....... +ꜩ0.00071 + [PUBLIC_KEY_HASH] ... -ꜩ0.000733 + payload fees(the block proposer) ....... +ꜩ0.000733 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.216 + Consumed gas: 1890.288 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -959,7 +959,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: 1665.812 units (will add 100 for safety) +Estimated gas: 1890.884 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,17 +970,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000722 + Fee to the baker: ꜩ0.000745 Expected counter: 24 - Gas limit: 1766 + Gas limit: 1991 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000722 - payload fees(the block proposer) ....... +ꜩ0.000722 + [PUBLIC_KEY_HASH] ... -ꜩ0.000745 + payload fees(the block proposer) ....... +ꜩ0.000745 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.812 + Consumed gas: 1890.884 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1002,7 +1002,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: 1666.408 units (will add 100 for safety) +Estimated gas: 1891.480 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,17 +1013,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000734 + Fee to the baker: ꜩ0.000757 Expected counter: 25 - Gas limit: 1767 + Gas limit: 1992 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000734 - payload fees(the block proposer) ....... +ꜩ0.000734 + [PUBLIC_KEY_HASH] ... -ꜩ0.000757 + payload fees(the block proposer) ....... +ꜩ0.000757 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.408 + Consumed gas: 1891.480 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1045,7 +1045,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: 1667.004 units (will add 100 for safety) +Estimated gas: 1892.076 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,17 +1056,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000746 + Fee to the baker: ꜩ0.000769 Expected counter: 26 - Gas limit: 1768 + Gas limit: 1993 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000746 - payload fees(the block proposer) ....... +ꜩ0.000746 + [PUBLIC_KEY_HASH] ... -ꜩ0.000769 + payload fees(the block proposer) ....... +ꜩ0.000769 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.004 + Consumed gas: 1892.076 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1088,7 +1088,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: 1667.600 units (will add 100 for safety) +Estimated gas: 1892.672 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,17 +1099,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000758 + Fee to the baker: ꜩ0.000781 Expected counter: 27 - Gas limit: 1768 + Gas limit: 1993 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000758 - payload fees(the block proposer) ....... +ꜩ0.000758 + [PUBLIC_KEY_HASH] ... -ꜩ0.000781 + payload fees(the block proposer) ....... +ꜩ0.000781 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.600 + Consumed gas: 1892.672 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1131,7 +1131,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: 1668.196 units (will add 100 for safety) +Estimated gas: 1893.268 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,17 +1142,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00077 + Fee to the baker: ꜩ0.000793 Expected counter: 28 - Gas limit: 1769 + Gas limit: 1994 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00077 - payload fees(the block proposer) ....... +ꜩ0.00077 + [PUBLIC_KEY_HASH] ... -ꜩ0.000793 + payload fees(the block proposer) ....... +ꜩ0.000793 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.196 + Consumed gas: 1893.268 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1174,7 +1174,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: 1668.792 units (will add 100 for safety) +Estimated gas: 1893.864 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,17 +1185,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000782 + Fee to the baker: ꜩ0.000805 Expected counter: 29 - Gas limit: 1769 + Gas limit: 1994 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000782 - payload fees(the block proposer) ....... +ꜩ0.000782 + [PUBLIC_KEY_HASH] ... -ꜩ0.000805 + payload fees(the block proposer) ....... +ꜩ0.000805 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.792 + Consumed gas: 1893.864 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1217,7 +1217,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: 1669.388 units (will add 100 for safety) +Estimated gas: 1894.460 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,17 +1228,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000794 + Fee to the baker: ꜩ0.000817 Expected counter: 30 - Gas limit: 1770 + Gas limit: 1995 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000794 - payload fees(the block proposer) ....... +ꜩ0.000794 + [PUBLIC_KEY_HASH] ... -ꜩ0.000817 + payload fees(the block proposer) ....... +ꜩ0.000817 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.388 + Consumed gas: 1894.460 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1260,7 +1260,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: 1669.984 units (will add 100 for safety) +Estimated gas: 1895.056 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,17 +1271,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000806 + Fee to the baker: ꜩ0.000829 Expected counter: 31 - Gas limit: 1770 + Gas limit: 1996 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000806 - payload fees(the block proposer) ....... +ꜩ0.000806 + [PUBLIC_KEY_HASH] ... -ꜩ0.000829 + payload fees(the block proposer) ....... +ꜩ0.000829 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.984 + Consumed gas: 1895.056 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 32 current messages hash = [SC_ROLLUP_INBOX_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 1d0f67b1b603..fe982d05b622 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -39,7 +39,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.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -50,17 +50,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -78,7 +78,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.468 units (will add 100 for safety) +Estimated gas: 1877.540 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -89,17 +89,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 3 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.596 + Consumed gas: 1877.668 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -118,7 +118,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.271 units (will add 100 for safety) +Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -129,17 +129,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000481 + Fee to the baker: ꜩ0.000503 Expected counter: 4 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000481 - payload fees(the block proposer) ....... +ꜩ0.000481 + [PUBLIC_KEY_HASH] ... -ꜩ0.000503 + payload fees(the block proposer) ....... +ꜩ0.000503 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.271 + Consumed gas: 1878.343 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -158,7 +158,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: 1653.867 units (will add 100 for safety) +Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -169,17 +169,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000493 + Fee to the baker: ꜩ0.000515 Expected counter: 5 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000493 - payload fees(the block proposer) ....... +ꜩ0.000493 + [PUBLIC_KEY_HASH] ... -ꜩ0.000515 + payload fees(the block proposer) ....... +ꜩ0.000515 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.995 + Consumed gas: 1879.067 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -199,7 +199,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.670 units (will add 100 for safety) +Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -210,17 +210,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000505 + Fee to the baker: ꜩ0.000527 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000505 - payload fees(the block proposer) ....... +ꜩ0.000505 + [PUBLIC_KEY_HASH] ... -ꜩ0.000527 + payload fees(the block proposer) ....... +ꜩ0.000527 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.670 + Consumed gas: 1879.742 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -240,7 +240,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.266 units (will add 100 for safety) +Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -251,17 +251,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000517 + Fee to the baker: ꜩ0.00054 Expected counter: 7 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000517 - payload fees(the block proposer) ....... +ꜩ0.000517 + [PUBLIC_KEY_HASH] ... -ꜩ0.00054 + payload fees(the block proposer) ....... +ꜩ0.00054 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.266 + Consumed gas: 1880.338 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -281,7 +281,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: 1655.862 units (will add 100 for safety) +Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -292,17 +292,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000529 + Fee to the baker: ꜩ0.000552 Expected counter: 8 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000529 - payload fees(the block proposer) ....... +ꜩ0.000529 + [PUBLIC_KEY_HASH] ... -ꜩ0.000552 + payload fees(the block proposer) ....... +ꜩ0.000552 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.862 + Consumed gas: 1880.934 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -322,7 +322,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.458 units (will add 100 for safety) +Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -333,17 +333,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000541 + Fee to the baker: ꜩ0.000564 Expected counter: 9 - Gas limit: 1757 + Gas limit: 1982 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000541 - payload fees(the block proposer) ....... +ꜩ0.000541 + [PUBLIC_KEY_HASH] ... -ꜩ0.000564 + payload fees(the block proposer) ....... +ꜩ0.000564 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.586 + Consumed gas: 1881.658 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -364,7 +364,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.261 units (will add 100 for safety) +Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -375,17 +375,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000553 + Fee to the baker: ꜩ0.000576 Expected counter: 10 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000553 - payload fees(the block proposer) ....... +ꜩ0.000553 + [PUBLIC_KEY_HASH] ... -ꜩ0.000576 + payload fees(the block proposer) ....... +ꜩ0.000576 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.261 + Consumed gas: 1882.333 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -406,7 +406,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: 1657.857 units (will add 100 for safety) +Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -417,17 +417,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000565 + Fee to the baker: ꜩ0.000588 Expected counter: 11 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000565 - payload fees(the block proposer) ....... +ꜩ0.000565 + [PUBLIC_KEY_HASH] ... -ꜩ0.000588 + payload fees(the block proposer) ....... +ꜩ0.000588 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.857 + Consumed gas: 1882.929 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -448,7 +448,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.453 units (will add 100 for safety) +Estimated gas: 1883.525 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -459,17 +459,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000577 + Fee to the baker: ꜩ0.0006 Expected counter: 12 - Gas limit: 1759 + Gas limit: 1984 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000577 - payload fees(the block proposer) ....... +ꜩ0.000577 + [PUBLIC_KEY_HASH] ... -ꜩ0.0006 + payload fees(the block proposer) ....... +ꜩ0.0006 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1658.453 + Consumed gas: 1883.525 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -490,7 +490,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.049 units (will add 100 for safety) +Estimated gas: 1884.121 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -501,17 +501,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000589 + Fee to the baker: ꜩ0.000612 Expected counter: 13 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000589 - payload fees(the block proposer) ....... +ꜩ0.000589 + [PUBLIC_KEY_HASH] ... -ꜩ0.000612 + payload fees(the block proposer) ....... +ꜩ0.000612 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.049 + Consumed gas: 1884.121 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -532,7 +532,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: 1659.645 units (will add 100 for safety) +Estimated gas: 1884.717 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -543,17 +543,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000601 + Fee to the baker: ꜩ0.000624 Expected counter: 14 - Gas limit: 1760 + Gas limit: 1985 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000601 - payload fees(the block proposer) ....... +ꜩ0.000601 + [PUBLIC_KEY_HASH] ... -ꜩ0.000624 + payload fees(the block proposer) ....... +ꜩ0.000624 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1659.645 + Consumed gas: 1884.717 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -574,7 +574,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.241 units (will add 100 for safety) +Estimated gas: 1885.313 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -585,17 +585,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000614 + Fee to the baker: ꜩ0.000636 Expected counter: 15 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000636 + payload fees(the block proposer) ....... +ꜩ0.000636 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.241 + Consumed gas: 1885.313 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -616,7 +616,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: 1660.837 units (will add 100 for safety) +Estimated gas: 1885.909 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -627,17 +627,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000626 + Fee to the baker: ꜩ0.000648 Expected counter: 16 - Gas limit: 1761 + Gas limit: 1986 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000626 - payload fees(the block proposer) ....... +ꜩ0.000626 + [PUBLIC_KEY_HASH] ... -ꜩ0.000648 + payload fees(the block proposer) ....... +ꜩ0.000648 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1660.837 + Consumed gas: 1885.909 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -658,7 +658,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: 1661.433 units (will add 100 for safety) +Estimated gas: 1886.505 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -669,17 +669,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000638 + Fee to the baker: ꜩ0.00066 Expected counter: 17 - Gas limit: 1762 + Gas limit: 1987 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000638 - payload fees(the block proposer) ....... +ꜩ0.000638 + [PUBLIC_KEY_HASH] ... -ꜩ0.00066 + payload fees(the block proposer) ....... +ꜩ0.00066 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1661.561 + Consumed gas: 1886.633 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -701,7 +701,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: 1662.236 units (will add 100 for safety) +Estimated gas: 1887.308 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -712,17 +712,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00065 + Fee to the baker: ꜩ0.000672 Expected counter: 18 - Gas limit: 1763 + Gas limit: 1988 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00065 - payload fees(the block proposer) ....... +ꜩ0.00065 + [PUBLIC_KEY_HASH] ... -ꜩ0.000672 + payload fees(the block proposer) ....... +ꜩ0.000672 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.236 + Consumed gas: 1887.308 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -744,7 +744,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: 1662.832 units (will add 100 for safety) +Estimated gas: 1887.904 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -755,17 +755,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000662 + Fee to the baker: ꜩ0.000684 Expected counter: 19 - Gas limit: 1763 + Gas limit: 1988 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000662 - payload fees(the block proposer) ....... +ꜩ0.000662 + [PUBLIC_KEY_HASH] ... -ꜩ0.000684 + payload fees(the block proposer) ....... +ꜩ0.000684 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1662.832 + Consumed gas: 1887.904 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -787,7 +787,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: 1663.428 units (will add 100 for safety) +Estimated gas: 1888.500 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -798,17 +798,17 @@ and/or an external block explorer to make 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.000696 Expected counter: 20 - Gas limit: 1764 + Gas limit: 1989 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000696 + payload fees(the block proposer) ....... +ꜩ0.000696 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1663.428 + Consumed gas: 1888.500 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -830,7 +830,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.024 units (will add 100 for safety) +Estimated gas: 1889.096 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -841,17 +841,17 @@ and/or an external block explorer to make 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.000708 Expected counter: 21 - Gas limit: 1765 + Gas limit: 1990 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000708 + payload fees(the block proposer) ....... +ꜩ0.000708 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.024 + Consumed gas: 1889.096 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -873,7 +873,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: 1664.620 units (will add 100 for safety) +Estimated gas: 1889.692 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -884,17 +884,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000698 + Fee to the baker: ꜩ0.00072 Expected counter: 22 - Gas limit: 1765 + Gas limit: 1990 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000698 - payload fees(the block proposer) ....... +ꜩ0.000698 + [PUBLIC_KEY_HASH] ... -ꜩ0.00072 + payload fees(the block proposer) ....... +ꜩ0.00072 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1664.620 + Consumed gas: 1889.692 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 23 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -916,7 +916,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: 1665.216 units (will add 100 for safety) +Estimated gas: 1890.288 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -927,17 +927,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00071 + Fee to the baker: ꜩ0.000733 Expected counter: 23 - Gas limit: 1766 + Gas limit: 1991 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00071 - payload fees(the block proposer) ....... +ꜩ0.00071 + [PUBLIC_KEY_HASH] ... -ꜩ0.000733 + payload fees(the block proposer) ....... +ꜩ0.000733 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.216 + Consumed gas: 1890.288 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 24 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -959,7 +959,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: 1665.812 units (will add 100 for safety) +Estimated gas: 1890.884 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -970,17 +970,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000722 + Fee to the baker: ꜩ0.000745 Expected counter: 24 - Gas limit: 1766 + Gas limit: 1991 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000722 - payload fees(the block proposer) ....... +ꜩ0.000722 + [PUBLIC_KEY_HASH] ... -ꜩ0.000745 + payload fees(the block proposer) ....... +ꜩ0.000745 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1665.812 + Consumed gas: 1890.884 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 25 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1002,7 +1002,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: 1666.408 units (will add 100 for safety) +Estimated gas: 1891.480 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1013,17 +1013,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000734 + Fee to the baker: ꜩ0.000757 Expected counter: 25 - Gas limit: 1767 + Gas limit: 1992 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000734 - payload fees(the block proposer) ....... +ꜩ0.000734 + [PUBLIC_KEY_HASH] ... -ꜩ0.000757 + payload fees(the block proposer) ....... +ꜩ0.000757 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1666.408 + Consumed gas: 1891.480 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 26 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1045,7 +1045,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: 1667.004 units (will add 100 for safety) +Estimated gas: 1892.076 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1056,17 +1056,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000746 + Fee to the baker: ꜩ0.000769 Expected counter: 26 - Gas limit: 1768 + Gas limit: 1993 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000746 - payload fees(the block proposer) ....... +ꜩ0.000746 + [PUBLIC_KEY_HASH] ... -ꜩ0.000769 + payload fees(the block proposer) ....... +ꜩ0.000769 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.004 + Consumed gas: 1892.076 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 27 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1088,7 +1088,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: 1667.600 units (will add 100 for safety) +Estimated gas: 1892.672 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1099,17 +1099,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000758 + Fee to the baker: ꜩ0.000781 Expected counter: 27 - Gas limit: 1768 + Gas limit: 1993 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000758 - payload fees(the block proposer) ....... +ꜩ0.000758 + [PUBLIC_KEY_HASH] ... -ꜩ0.000781 + payload fees(the block proposer) ....... +ꜩ0.000781 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1667.600 + Consumed gas: 1892.672 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 28 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1131,7 +1131,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: 1668.196 units (will add 100 for safety) +Estimated gas: 1893.268 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1142,17 +1142,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00077 + Fee to the baker: ꜩ0.000793 Expected counter: 28 - Gas limit: 1769 + Gas limit: 1994 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00077 - payload fees(the block proposer) ....... +ꜩ0.00077 + [PUBLIC_KEY_HASH] ... -ꜩ0.000793 + payload fees(the block proposer) ....... +ꜩ0.000793 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.196 + Consumed gas: 1893.268 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 29 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1174,7 +1174,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: 1668.792 units (will add 100 for safety) +Estimated gas: 1893.864 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1185,17 +1185,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000782 + Fee to the baker: ꜩ0.000805 Expected counter: 29 - Gas limit: 1769 + Gas limit: 1994 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000782 - payload fees(the block proposer) ....... +ꜩ0.000782 + [PUBLIC_KEY_HASH] ... -ꜩ0.000805 + payload fees(the block proposer) ....... +ꜩ0.000805 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1668.792 + Consumed gas: 1893.864 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 30 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1217,7 +1217,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: 1669.388 units (will add 100 for safety) +Estimated gas: 1894.460 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1228,17 +1228,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000794 + Fee to the baker: ꜩ0.000817 Expected counter: 30 - Gas limit: 1770 + Gas limit: 1995 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000794 - payload fees(the block proposer) ....... +ꜩ0.000794 + [PUBLIC_KEY_HASH] ... -ꜩ0.000817 + payload fees(the block proposer) ....... +ꜩ0.000817 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.388 + Consumed gas: 1894.460 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 31 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -1260,7 +1260,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: 1669.984 units (will add 100 for safety) +Estimated gas: 1895.056 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -1271,17 +1271,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000806 + Fee to the baker: ꜩ0.000829 Expected counter: 31 - Gas limit: 1770 + Gas limit: 1996 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000806 - payload fees(the block proposer) ....... +ꜩ0.000806 + [PUBLIC_KEY_HASH] ... -ꜩ0.000829 + payload fees(the block proposer) ....... +ꜩ0.000829 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1669.984 + Consumed gas: 1895.056 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 32 current messages hash = [SC_ROLLUP_INBOX_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 0e305c646d9a..a27a22eb81de 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,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.468 units (will add 100 for safety) +Estimated gas: 1877.540 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 3 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.596 + Consumed gas: 1877.668 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_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 15a9679235c4..ecb9c908cb87 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,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.872 units (will add 100 for safety) +Estimated gas: 1876.944 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 3 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652 + Consumed gas: 1877.072 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,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.872 units (will add 100 for safety) +Estimated gas: 1876.944 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 3 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652 + Consumed gas: 1877.072 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,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.079 units (will add 100 for safety) +Estimated gas: 1877.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 4 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.079 + Consumed gas: 1877.151 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_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 e26199310c86..41e643b85619 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,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.468 units (will add 100 for safety) +Estimated gas: 1877.540 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 3 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.596 + Consumed gas: 1877.668 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,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.079 units (will add 100 for safety) +Estimated gas: 1877.151 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 4 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.079 + Consumed gas: 1877.151 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,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.675 units (will add 100 for safety) +Estimated gas: 1877.747 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 5 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.803 + Consumed gas: 1877.875 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_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 a6ec8345443e..fae3d5be6044 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.847 units (will add 100 for safety) +Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.197 units (will add 100 for safety) +Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.197 + Consumed gas: 1879.269 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.276 units (will add 100 for safety) +Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.276 + Consumed gas: 1879.348 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.483 units (will add 100 for safety) +Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.483 + Consumed gas: 1879.555 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.626 units (will add 100 for safety) +Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 9 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.626 + Consumed gas: 1879.698 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.690 units (will add 100 for safety) +Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 10 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.690 + Consumed gas: 1879.762 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 11 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_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 a6ec8345443e..fae3d5be6044 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.847 units (will add 100 for safety) +Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.197 units (will add 100 for safety) +Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.197 + Consumed gas: 1879.269 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.276 units (will add 100 for safety) +Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.276 + Consumed gas: 1879.348 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.483 units (will add 100 for safety) +Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.483 + Consumed gas: 1879.555 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.626 units (will add 100 for safety) +Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 9 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.626 + Consumed gas: 1879.698 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.690 units (will add 100 for safety) +Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 10 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.690 + Consumed gas: 1879.762 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 11 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_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 7587ace9d2ba..c8514e1c385a 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.975 units (will add 100 for safety) +Estimated gas: 1879.047 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.227 units (will add 100 for safety) +Estimated gas: 1879.299 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.227 + Consumed gas: 1879.299 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.291 units (will add 100 for safety) +Estimated gas: 1879.363 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.291 + Consumed gas: 1879.363 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.434 units (will add 100 for safety) +Estimated gas: 1879.506 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.434 + Consumed gas: 1879.506 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.641 units (will add 100 for safety) +Estimated gas: 1879.713 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 9 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.641 + Consumed gas: 1879.713 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 10 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 11 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 24 current messages hash = [SC_ROLLUP_INBOX_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 b31f8e7b25a6..6099128b769e 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.975 units (will add 100 for safety) +Estimated gas: 1879.047 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.212 units (will add 100 for safety) +Estimated gas: 1879.284 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.212 + Consumed gas: 1879.284 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.291 units (will add 100 for safety) +Estimated gas: 1879.363 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.291 + Consumed gas: 1879.363 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 14 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 16 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.626 units (will add 100 for safety) +Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 9 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.626 + Consumed gas: 1879.698 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 18 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 10 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 20 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 11 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 22 current messages hash = [SC_ROLLUP_INBOX_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 a6ec8345443e..fae3d5be6044 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.847 units (will add 100 for safety) +Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.197 units (will add 100 for safety) +Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.197 + Consumed gas: 1879.269 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.276 units (will add 100 for safety) +Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.276 + Consumed gas: 1879.348 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.483 units (will add 100 for safety) +Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.483 + Consumed gas: 1879.555 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.626 units (will add 100 for safety) +Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 9 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.626 + Consumed gas: 1879.698 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.690 units (will add 100 for safety) +Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 10 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.690 + Consumed gas: 1879.762 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 11 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_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 a6ec8345443e..fae3d5be6044 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.847 units (will add 100 for safety) +Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.197 units (will add 100 for safety) +Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.197 + Consumed gas: 1879.269 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.276 units (will add 100 for safety) +Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.276 + Consumed gas: 1879.348 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.483 units (will add 100 for safety) +Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.483 + Consumed gas: 1879.555 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.626 units (will add 100 for safety) +Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 9 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.626 + Consumed gas: 1879.698 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.690 units (will add 100 for safety) +Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 10 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.690 + Consumed gas: 1879.762 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 11 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_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 e0b6c3e8b0e7..b37b0852040b 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.847 units (will add 100 for safety) +Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.197 units (will add 100 for safety) +Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.197 + Consumed gas: 1879.269 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.276 units (will add 100 for safety) +Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.276 + Consumed gas: 1879.348 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.483 units (will add 100 for safety) +Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.483 + Consumed gas: 1879.555 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_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 872ec8db2729..13b93702c795 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.847 units (will add 100 for safety) +Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.197 units (will add 100 for safety) +Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.197 + Consumed gas: 1879.269 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.276 units (will add 100 for safety) +Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.276 + Consumed gas: 1879.348 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_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 a6ec8345443e..fae3d5be6044 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.847 units (will add 100 for safety) +Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.197 units (will add 100 for safety) +Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.197 + Consumed gas: 1879.269 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.276 units (will add 100 for safety) +Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.276 + Consumed gas: 1879.348 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.483 units (will add 100 for safety) +Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.483 + Consumed gas: 1879.555 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.626 units (will add 100 for safety) +Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 9 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.626 + Consumed gas: 1879.698 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.690 units (will add 100 for safety) +Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 10 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.690 + Consumed gas: 1879.762 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 11 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_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 a6ec8345443e..fae3d5be6044 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,8 +1,8 @@ ./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: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1653.847 units (will add 100 for safety) +Estimated gas: 1878.919 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 2 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.975 + Consumed gas: 1879.047 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","3 3 +","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.197 units (will add 100 for safety) +Estimated gas: 1879.269 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 3 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.197 + Consumed gas: 1879.269 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 3 +","3 7 8 + * y","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.276 units (will add 100 for safety) +Estimated gas: 1879.348 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 4 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.276 + Consumed gas: 1879.348 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","3 3 +","2 2 out"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.419 units (will add 100 for safety) +Estimated gas: 1879.491 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 5 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.419 + Consumed gas: 1879.491 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.483 units (will add 100 for safety) +Estimated gas: 1879.555 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.483 + Consumed gas: 1879.555 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 7 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 13 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.498 units (will add 100 for safety) +Estimated gas: 1879.570 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 8 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.498 + Consumed gas: 1879.570 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 15 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.626 units (will add 100 for safety) +Estimated gas: 1879.698 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 9 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.626 + Consumed gas: 1879.698 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 17 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.690 units (will add 100 for safety) +Estimated gas: 1879.762 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 10 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.690 + Consumed gas: 1879.762 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 19 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,7 @@ This sequence of operations was run: ./tezos-client --wait none send sc rollup message 'text:["1","1 1 x","3 7 8 + * y","2 2 out","3 3 +"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1654.705 units (will add 100 for safety) +Estimated gas: 1879.777 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000494 + Fee to the baker: ꜩ0.000516 Expected counter: 11 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000494 - payload fees(the block proposer) ....... +ꜩ0.000494 + [PUBLIC_KEY_HASH] ... -ꜩ0.000516 + payload fees(the block proposer) ....... +ꜩ0.000516 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.705 + Consumed gas: 1879.777 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 21 current messages hash = [SC_ROLLUP_INBOX_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 f0ec6e3683d5..908e95e03d3f 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 string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.164 units (will add 100 for safety) -Estimated storage: 6628 bytes added (will add 20 for safety) +Estimated gas: 3109.308 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]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000666 + Fee to the baker: ꜩ0.000686 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6648 bytes + Gas limit: 3210 + Storage limit: 6684 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000666 - payload fees(the block proposer) ....... +ꜩ0.000666 + [PUBLIC_KEY_HASH] ... -ꜩ0.000686 + payload fees(the block proposer) ....... +ꜩ0.000686 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 2909.164 - Storage size: 6628 bytes + Consumed gas: 3109.308 + Storage size: 6664 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.657 - storage fees ........................... +ꜩ1.657 + [PUBLIC_KEY_HASH] ... -ꜩ1.666 + storage fees ........................... +ꜩ1.666 ./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 860c2905cb9f..6f3468707429 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 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 60dca2121293..e9258c69c7f9 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_HASH]' Node is bootstrapped. -Estimated gas: 1651.650 units (will add 100 for safety) +Estimated gas: 1876.722 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000457 + Fee to the baker: ꜩ0.000479 Expected counter: 2 - Gas limit: 1752 + Gas limit: 1977 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000457 - payload fees(the block proposer) ....... +ꜩ0.000457 + [PUBLIC_KEY_HASH] ... -ꜩ0.000479 + payload fees(the block proposer) ....... +ꜩ0.000479 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1651.778 + Consumed gas: 1876.850 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,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.468 units (will add 100 for safety) +Estimated gas: 1877.540 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000469 + Fee to the baker: ꜩ0.000491 Expected counter: 3 - Gas limit: 1753 + Gas limit: 1978 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000469 - payload fees(the block proposer) ....... +ꜩ0.000469 + [PUBLIC_KEY_HASH] ... -ꜩ0.000491 + payload fees(the block proposer) ....... +ꜩ0.000491 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1652.596 + Consumed gas: 1877.668 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -114,7 +114,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.271 units (will add 100 for safety) +Estimated gas: 1878.343 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -125,17 +125,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000481 + Fee to the baker: ꜩ0.000503 Expected counter: 4 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000481 - payload fees(the block proposer) ....... +ꜩ0.000481 + [PUBLIC_KEY_HASH] ... -ꜩ0.000503 + payload fees(the block proposer) ....... +ꜩ0.000503 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.271 + Consumed gas: 1878.343 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 5 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -154,7 +154,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: 1653.867 units (will add 100 for safety) +Estimated gas: 1878.939 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -165,17 +165,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000493 + Fee to the baker: ꜩ0.000515 Expected counter: 5 - Gas limit: 1754 + Gas limit: 1979 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000493 - payload fees(the block proposer) ....... +ꜩ0.000493 + [PUBLIC_KEY_HASH] ... -ꜩ0.000515 + payload fees(the block proposer) ....... +ꜩ0.000515 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1653.995 + Consumed gas: 1879.067 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 6 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -195,7 +195,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.670 units (will add 100 for safety) +Estimated gas: 1879.742 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -206,17 +206,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000505 + Fee to the baker: ꜩ0.000527 Expected counter: 6 - Gas limit: 1755 + Gas limit: 1980 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000505 - payload fees(the block proposer) ....... +ꜩ0.000505 + [PUBLIC_KEY_HASH] ... -ꜩ0.000527 + payload fees(the block proposer) ....... +ꜩ0.000527 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1654.670 + Consumed gas: 1879.742 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 7 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -236,7 +236,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.266 units (will add 100 for safety) +Estimated gas: 1880.338 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -247,17 +247,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000517 + Fee to the baker: ꜩ0.00054 Expected counter: 7 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000517 - payload fees(the block proposer) ....... +ꜩ0.000517 + [PUBLIC_KEY_HASH] ... -ꜩ0.00054 + payload fees(the block proposer) ....... +ꜩ0.00054 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.266 + Consumed gas: 1880.338 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 8 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -277,7 +277,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: 1655.862 units (will add 100 for safety) +Estimated gas: 1880.934 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -288,17 +288,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000529 + Fee to the baker: ꜩ0.000552 Expected counter: 8 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000529 - payload fees(the block proposer) ....... +ꜩ0.000529 + [PUBLIC_KEY_HASH] ... -ꜩ0.000552 + payload fees(the block proposer) ....... +ꜩ0.000552 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.862 + Consumed gas: 1880.934 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 9 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -318,7 +318,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.458 units (will add 100 for safety) +Estimated gas: 1881.530 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -329,17 +329,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000541 + Fee to the baker: ꜩ0.000564 Expected counter: 9 - Gas limit: 1757 + Gas limit: 1982 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000541 - payload fees(the block proposer) ....... +ꜩ0.000541 + [PUBLIC_KEY_HASH] ... -ꜩ0.000564 + payload fees(the block proposer) ....... +ꜩ0.000564 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.586 + Consumed gas: 1881.658 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 10 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -360,7 +360,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.261 units (will add 100 for safety) +Estimated gas: 1882.333 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -371,17 +371,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000553 + Fee to the baker: ꜩ0.000576 Expected counter: 10 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000553 - payload fees(the block proposer) ....... +ꜩ0.000553 + [PUBLIC_KEY_HASH] ... -ꜩ0.000576 + payload fees(the block proposer) ....... +ꜩ0.000576 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.261 + Consumed gas: 1882.333 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 11 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -402,7 +402,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: 1657.857 units (will add 100 for safety) +Estimated gas: 1882.929 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -413,17 +413,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000565 + Fee to the baker: ꜩ0.000588 Expected counter: 11 - Gas limit: 1758 + Gas limit: 1983 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000565 - payload fees(the block proposer) ....... +ꜩ0.000565 + [PUBLIC_KEY_HASH] ... -ꜩ0.000588 + payload fees(the block proposer) ....... +ꜩ0.000588 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1657.857 + Consumed gas: 1882.929 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 12 current messages hash = [SC_ROLLUP_INBOX_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 25a9c336b553..f633af4939bf 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 string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2909.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 3109.260 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]' NOT waiting for the operation to be included. @@ -12,30 +12,30 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000654 + Fee to the baker: ꜩ0.000674 Expected counter: 1 - Gas limit: 3010 - Storage limit: 6636 bytes + Gas limit: 3210 + Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000654 - payload fees(the block proposer) ....... +ꜩ0.000654 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 2909.116 - Storage size: 6616 bytes + Consumed gas: 3109.260 + Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.654 - storage fees ........................... +ꜩ1.654 + [PUBLIC_KEY_HASH] ... -ꜩ1.663 + storage fees ........................... +ꜩ1.663 ./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.309 units (will add 100 for safety) +Estimated gas: 1880.381 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,17 +46,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.00058 + Fee to the baker: ꜩ0.000603 Expected counter: 2 - Gas limit: 1756 + Gas limit: 1981 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.00058 - payload fees(the block proposer) ....... +ꜩ0.00058 + [PUBLIC_KEY_HASH] ... -ꜩ0.000603 + payload fees(the block proposer) ....... +ꜩ0.000603 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1655.437 + Consumed gas: 1880.509 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 3 current messages hash = [SC_ROLLUP_INBOX_HASH] @@ -74,7 +74,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.399 units (will add 100 for safety) +Estimated gas: 1881.471 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -85,17 +85,17 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000608 + Fee to the baker: ꜩ0.000631 Expected counter: 3 - Gas limit: 1757 + Gas limit: 1982 Storage limit: 0 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000608 - payload fees(the block proposer) ....... +ꜩ0.000608 + [PUBLIC_KEY_HASH] ... -ꜩ0.000631 + payload fees(the block proposer) ....... +ꜩ0.000631 Smart contract rollup messages submission: Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied - Consumed gas: 1656.527 + Consumed gas: 1881.599 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] level = 4 current messages hash = [SC_ROLLUP_INBOX_HASH] -- GitLab