diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index 7f26714bb53e344d0c43dea994fd6c5dd4132cdc..3134da934873edf2bc75b7e788989e78560865db 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -1942,7 +1942,11 @@ module Sc_rollup = struct let register_boot_sector () = Registration.register1 ~chunked:true S.boot_sector @@ fun ctxt address () () -> - Alpha_context.Sc_rollup.get_boot_sector ctxt address + let open Lwt_tzresult_syntax in + let+ _ctxt, boot_sector = + Alpha_context.Sc_rollup.get_boot_sector ctxt address + in + boot_sector let register_last_cemented_commitment_hash_with_level () = Registration.register1 diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index b37738ea67ace64b0e368f4f44842bd8a40bee8b..839341cbca70fd331fe77caae0f2dde9b1de944d 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3445,7 +3445,7 @@ module Sc_rollup : sig val genesis_info : context -> rollup -> Commitment.genesis_info tzresult Lwt.t - val get_boot_sector : context -> t -> string tzresult Lwt.t + val get_boot_sector : context -> t -> (context * string) tzresult Lwt.t module Dal_slot : sig val subscribe : diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index fef6feec18a159b090eae59ffe71c80144f94803..9bb29c800446f116a7b1a826aeedad9555b87dcd 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -44,7 +44,9 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = address {commitment_hash = genesis_commitment_hash; level = level.level} in - let*! ctxt = Store.Boot_sector.add ctxt address boot_sector in + let* ctxt, boot_sector_size, _sector_existed = + Store.Boot_sector.add ctxt address boot_sector + in let* ctxt, param_ty_size_diff, _added = Store.Parameters_type.add ctxt address parameters_ty in @@ -86,9 +88,6 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let* ctxt, stakers_size_diff = Store.Staker_count.init ctxt address 0l in let addresses_size = 2 * Sc_rollup_repr.Address.size in let stored_kind_size = 2 (* because tag_size of kind encoding is 16bits. *) in - let boot_sector_size = - Data_encoding.Binary.length Data_encoding.string boot_sector - in let origination_size = Constants_storage.sc_rollup_origination_size ctxt in let size = Z.of_int @@ -120,10 +119,10 @@ let genesis_info ctxt rollup = let get_boot_sector ctxt rollup = let open Lwt_tzresult_syntax in - let* boot_sector = Storage.Sc_rollup.Boot_sector.find ctxt rollup in + let* ctxt, boot_sector = Storage.Sc_rollup.Boot_sector.find ctxt rollup in match boot_sector with | None -> fail (Sc_rollup_does_not_exist rollup) - | Some boot_sector -> return boot_sector + | Some boot_sector -> return (ctxt, boot_sector) let parameters_type ctxt rollup = let open Lwt_result_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 06e716873bc0ce9e08fe278a14b74ed89906b529..ea943801af991c786430c45764ce2beebc02e911 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.mli @@ -59,7 +59,8 @@ val genesis_info : 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 : Raw_context.t -> Sc_rollup_repr.t -> string tzresult Lwt.t +val get_boot_sector : + Raw_context.t -> Sc_rollup_repr.t -> (Raw_context.t * string) tzresult Lwt.t (** [parameters_type ctxt rollup] returns the registered type of a rollup. Returns [None] in case there is no registered type for the rollup. *) diff --git a/src/proto_alpha/lib_protocol/storage.ml b/src/proto_alpha/lib_protocol/storage.ml index 1d36525c5bebc8a5abac1655ede625ea256f9ebf..a1073a69764ed4ecfa7e14576dec2b26c99d6c91 100644 --- a/src/proto_alpha/lib_protocol/storage.ml +++ b/src/proto_alpha/lib_protocol/storage.ml @@ -1606,7 +1606,7 @@ module Sc_rollup = struct end) module Boot_sector = - Indexed_context.Make_map + Indexed_context.Make_carbonated_map (struct let name = ["boot_sector"] end) diff --git a/src/proto_alpha/lib_protocol/storage.mli b/src/proto_alpha/lib_protocol/storage.mli index 717c6818ab2d7c559eb3c495feac6c615cf62e98..a3305f8db0e6d58679532135fdd0cf5370f27f32 100644 --- a/src/proto_alpha/lib_protocol/storage.mli +++ b/src/proto_alpha/lib_protocol/storage.mli @@ -704,7 +704,7 @@ module Sc_rollup : sig and type t := Raw_context.t module Boot_sector : - Indexed_data_storage + Non_iterable_indexed_carbonated_data_storage with type key = Sc_rollup_repr.t and type value = string and type t := Raw_context.t 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 84c2be78f6289f388d664a1c3be011bab9953d96..51bbe0aac59461a44fd87de0ab626038c610c810 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out index 9ef3b4e0ecf040538373d22bffe163e655127ceb..9528939d7ba8789268d5a703a29db71d6d310370 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out index de9331f43ea1e5e18063768d58431e77507341f1..9b20e4d284dd24aed09502da16160c7c9321a164 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out index c9116db63b8654f0d2feb9444d9fecd43809059a..e4c9e579e0682f5d606ab825eb32b5c1e807c0bd 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out index 8b48c5f5d81550573ea9ceff07ab01fa780104db..40ba26e36eaa5e3dd192b0ecf9a2c611906f8d3c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.156 units (will add 100 for safety) Estimated storage: 6626 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000646 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6646 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000626 - payload fees(the block proposer) ....... +ꜩ0.000626 + [PUBLIC_KEY_HASH] ... -ꜩ0.000646 + payload fees(the block proposer) ....... +ꜩ0.000646 Originate smart contract rollup of kind arith and type string with boot sector '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.156 Storage size: 6626 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -77,7 +77,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with 31 --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.116 units (will add 100 for safety) Estimated storage: 6616 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -88,16 +88,16 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000616 + Fee to the baker: ꜩ0.000636 Expected counter: 3 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000616 - payload fees(the block proposer) ....... +ꜩ0.000616 + [PUBLIC_KEY_HASH] ... -ꜩ0.000636 + payload fees(the block proposer) ....... +ꜩ0.000636 Originate smart contract rollup of kind arith and type string with boot sector '31' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.116 Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out index de9331f43ea1e5e18063768d58431e77507341f1..9b20e4d284dd24aed09502da16160c7c9321a164 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out index de9331f43ea1e5e18063768d58431e77507341f1..9b20e4d284dd24aed09502da16160c7c9321a164 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out index de9331f43ea1e5e18063768d58431e77507341f1..9b20e4d284dd24aed09502da16160c7c9321a164 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out index dec06cb9fe3b7f6ef36cc5dbf3e26e5d03b0d351..5fb3471ba05af5503f5486dc6660cf524a3dbfb0 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -32,7 +32,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -43,16 +43,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 2 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -63,7 +63,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -74,16 +74,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 3 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -94,7 +94,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -105,16 +105,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 4 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -125,7 +125,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -136,16 +136,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 5 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -156,7 +156,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -167,16 +167,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 6 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -187,7 +187,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -198,16 +198,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 7 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -218,7 +218,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -229,16 +229,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 8 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -249,7 +249,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -260,16 +260,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 9 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -280,7 +280,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -291,16 +291,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 10 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out index 4a842d17f5f71abc7e744928088c22cf3a77e0b1..88203ec8c5f201d4ce5e9a8be24600169ac97437 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out index 6acafae0a4daa6da1cf68475b4c20f4ee289977b..ba56d5213556ad2be9ebfaea8c130414fa9d74ef 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out index 13564d8816a0a6ef7d4cd8b94e390508d8c0aa3a..a207ee3903b4431e29c037c4655304d67c801ec2 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out index 58a2928ed662322914ff769494b8fa6bfc5bb0be..637a3956c5d0e8883e8a736af99eeb2ca261c498 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out index 97ff8a99a1052d3ed66006ff00a587a2a5df5f3d..237b9fec99f0dc2fc0a62d1e238296c489bace6e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out index f62b3c5b741ad27289f0783d24e759d78ad5f3e9..5fcb80206a651e4ff0901427c46c7998acdbfa18 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out index d25ce26b35643a530c0b4d58b7676f541dcab083..0f0ce47ab835bad8fe13737acf14c6cd37f24eb6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out index e9640807e794dec29d5aadc70ef44caa53127426..f05550fb17ac68e9251b36596be2be6acb801f9d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out index b20cc1155cb07624ac91d538b7a213651d1255ee..6445ff3d0188618f01305965c16156d17fb0ed9d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out index cba6a64c700ce054a90c8e63be385d05824f0258..242f3219a8246fe5a263e80c21290dfc898cd90c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out index c388500287a6022ebeba989cc7cae48b69ef3fac..0033f2eaf55002c04deb6b0a4cf6e8be97ec06b3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out index baee5739d0e569a2e047b33f2b78f1ded9bd30df..b4c36f530f666f9a54a87231b8f74b9c040ff354 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out index 3170d2c2a6858e4dafeaa42b780139a062303091..2e2c6a76348ddebe28f5a8c78d1a928aa9909eb9 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out index bc4abe91fc0d630e26a0b7198944099696c1083e..f1373a5831dac6e4380145d57c4c0bb4ee195224 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.156 units (will add 100 for safety) Estimated storage: 6626 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000646 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6646 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000626 - payload fees(the block proposer) ....... +ꜩ0.000626 + [PUBLIC_KEY_HASH] ... -ꜩ0.000646 + payload fees(the block proposer) ....... +ꜩ0.000646 Originate smart contract rollup of kind arith and type string with boot sector '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.156 Storage size: 6626 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out index de9331f43ea1e5e18063768d58431e77507341f1..9b20e4d284dd24aed09502da16160c7c9321a164 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out index f5cacfba21b8424c9b9ab1937e255ceba8a16252..5cc7ec561d32c2f6d638060593ffcf76309d0f1e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out index 28bd204f8482172b8735d6a5f74fff70c12fc60c..733d44ea61801e36b8737e8e092eefb7a2da2ad4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 2509.092 units (will add 100 for safety) +Estimated gas: 2709.108 units (will add 100 for safety) Estimated storage: 6614 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,16 +12,16 @@ and/or an external block explorer to make 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.000634 Expected counter: 1 - Gas limit: 2610 + Gas limit: 2810 Storage limit: 6634 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000614 - payload fees(the block proposer) ....... +ꜩ0.000614 + [PUBLIC_KEY_HASH] ... -ꜩ0.000634 + payload fees(the block proposer) ....... +ꜩ0.000634 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2509.092 + Consumed gas: 2709.108 Storage size: 6614 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH]