diff --git a/src/proto_alpha/lib_plugin/RPC.ml b/src/proto_alpha/lib_plugin/RPC.ml index 771fcefd31ce27d574f710aa3899a78c31ecb6ba..daaac1c42cd298cc851ca6ebb11c76622cedfbf8 100644 --- a/src/proto_alpha/lib_plugin/RPC.ml +++ b/src/proto_alpha/lib_plugin/RPC.ml @@ -1930,7 +1930,8 @@ module Sc_rollup = struct let register_kind () = Registration.opt_register1 ~chunked:true S.kind @@ fun ctxt address () () -> - Alpha_context.Sc_rollup.kind ctxt address >|=? Option.some + Alpha_context.Sc_rollup.kind ctxt address >|=? fun (_ctxt, kind) -> + Some kind (* TODO: https://gitlab.com/tezos/tezos/-/issues/2688 *) let register_genesis_info () = @@ -1989,7 +1990,7 @@ module Sc_rollup = struct let register_root () = Registration.register0 ~chunked:true S.root (fun context () () -> - Sc_rollup.list context) + Sc_rollup.list_unaccounted context) let register_ongoing_refutation_game () = Registration.register1 diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 839341cbca70fd331fe77caae0f2dde9b1de944d..ab984536b588abd62ca706fdaeca89db5fcfebcf 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3246,7 +3246,7 @@ module Sc_rollup : sig val parameters_type : context -> t -> (Script.lazy_expr option * context) tzresult Lwt.t - val kind : context -> t -> Kind.t tzresult Lwt.t + val kind : context -> t -> (context * Kind.t) tzresult Lwt.t module Errors : sig type error += Sc_rollup_does_not_exist of t @@ -3441,7 +3441,7 @@ module Sc_rollup : sig val rpc_arg : t RPC_arg.t - val list : context -> t list tzresult Lwt.t + val list_unaccounted : context -> t list tzresult Lwt.t val genesis_info : context -> rollup -> Commitment.genesis_info tzresult Lwt.t diff --git a/src/proto_alpha/lib_protocol/sc_rollup_operations.ml b/src/proto_alpha/lib_protocol/sc_rollup_operations.ml index 0547464cc672c0bf3e96c7691063c6d42bc75b2a..36714f6806f994a712f280b0b31e1192ac407bd0 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_operations.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_operations.ml @@ -303,9 +303,9 @@ let validate_and_decode_output_proof ctxt ~cemented_commitment rollup ~output_proof = let open Lwt_tzresult_syntax in (* Lookup the PVM of the rollup. *) - let* (module PVM : Sc_rollup.PVM.S) = - let+ kind = Sc_rollup.kind ctxt rollup in - Sc_rollup.Kind.pvm_of kind + let* ctxt, (module PVM : Sc_rollup.PVM.S) = + let+ ctxt, kind = Sc_rollup.kind ctxt rollup in + (ctxt, Sc_rollup.Kind.pvm_of kind) in let*? ctxt = Gas.consume diff --git a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml index 39719aa133231a439b1fdd4ce0ad602a2af766b5..a506e941714b8fcd033356b286e4f388b739a9fe 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_refutation_storage.ml @@ -226,7 +226,7 @@ let init_game ctxt rollup ~refuter ~defender = child_info.predecessor in let* ctxt, inbox = Store.Inbox.get ctxt rollup in - let* kind = Store.PVM_kind.get ctxt rollup in + let* ctxt, kind = Store.PVM_kind.get ctxt rollup in let default_number_of_sections = Constants_storage.sc_rollup_number_of_sections_in_dissection ctxt in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index 9bb29c800446f116a7b1a826aeedad9555b87dcd..23abcf365139ef4a013aea3afdeca6eb6708b503 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -37,7 +37,9 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let*? ctxt, nonce = Raw_context.increment_origination_nonce ctxt in let level = Raw_context.current_level ctxt in let*? address = Sc_rollup_repr.Address.from_nonce nonce in - let*! ctxt = Store.PVM_kind.add ctxt address kind in + let* ctxt, pvm_kind_size, _kind_existed = + Store.PVM_kind.add ctxt address kind + in let*! ctxt = Store.Genesis_info.add ctxt @@ -94,20 +96,20 @@ 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) + + stakers_size_diff + param_ty_size_diff + pvm_kind_size) in return (address, size, genesis_commitment_hash, ctxt) let kind ctxt address = let open Lwt_tzresult_syntax in - let* kind_opt = Store.PVM_kind.find ctxt address in + let* ctxt, kind_opt = Store.PVM_kind.find ctxt address in match kind_opt with - | Some k -> return k + | Some k -> return (ctxt, k) | None -> fail (Sc_rollup_errors.Sc_rollup_does_not_exist address) -let list ctxt = +let list_unaccounted ctxt = let open Lwt_syntax in - let+ res = Store.PVM_kind.keys ctxt in + let+ res = Store.PVM_kind.keys_unaccounted ctxt in Result.return res let genesis_info ctxt rollup = diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_storage.mli index ea943801af991c786430c45764ce2beebc02e911..dc4cb5ea8e9ff9bb6c8ba0385aeb32a1d8ac2571 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.mli @@ -47,9 +47,12 @@ val originate : (** [kind context address] returns the kind of the given rollup [address] iff [address] is an existing rollup. Fails with an [Sc_rollup_does_not_exist] error in case the rollup does not exist. *) -val kind : Raw_context.t -> Sc_rollup_repr.t -> Sc_rollups.Kind.t tzresult Lwt.t +val kind : + Raw_context.t -> + Sc_rollup_repr.t -> + (Raw_context.t * Sc_rollups.Kind.t) tzresult Lwt.t -val list : Raw_context.t -> Sc_rollup_repr.t list tzresult Lwt.t +val list_unaccounted : Raw_context.t -> Sc_rollup_repr.t list tzresult Lwt.t (** [genesis_info ctxt sc_rollup] returns the level at which a [sc_rollup] was originated, and its genesis commitment hash. *) diff --git a/src/proto_alpha/lib_protocol/storage.ml b/src/proto_alpha/lib_protocol/storage.ml index a1073a69764ed4ecfa7e14576dec2b26c99d6c91..637404e7263f23e9e5c08844b89d3e15dfae2693 100644 --- a/src/proto_alpha/lib_protocol/storage.ml +++ b/src/proto_alpha/lib_protocol/storage.ml @@ -1595,7 +1595,7 @@ module Sc_rollup = struct end module PVM_kind = - Indexed_context.Make_map + Indexed_context.Make_carbonated_map (struct let name = ["kind"] end) diff --git a/src/proto_alpha/lib_protocol/storage.mli b/src/proto_alpha/lib_protocol/storage.mli index a3305f8db0e6d58679532135fdd0cf5370f27f32..c4c00f28d58f8399c3603045adb723dea0d9a467 100644 --- a/src/proto_alpha/lib_protocol/storage.mli +++ b/src/proto_alpha/lib_protocol/storage.mli @@ -698,7 +698,7 @@ module Sc_rollup : sig See module {!Sc_rollup_repr.Commitment} for details. *) module PVM_kind : - Indexed_data_storage + Non_iterable_indexed_carbonated_data_storage with type key = Sc_rollup_repr.t and type value = Sc_rollups.Kind.t 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 51bbe0aac59461a44fd87de0ab626038c610c810..830efd4806e3db0ad2a13a3a817116c5ebd955e2 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,20 +12,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 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 9528939d7ba8789268d5a703a29db71d6d310370..a8ee78b23f3dd3503a28f0f7eca3a5130508b950 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type unit with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 9b20e4d284dd24aed09502da16160c7c9321a164..f901ef68e52f508a0f6704e666715fa5508e87fd 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,20 +12,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 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 e4c9e579e0682f5d606ab825eb32b5c1e807c0bd..11fa06b1a9e3afaefe55b1111cdfbdfd6ff350b8 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 40ba26e36eaa5e3dd192b0ecf9a2c611906f8d3c..a37f6d0161d5bf5cd8c74153d7731024265f0702 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: 2709.156 units (will add 100 for safety) -Estimated storage: 6626 bytes added (will add 20 for safety) +Estimated gas: 2909.164 units (will add 100 for safety) +Estimated storage: 6628 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,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000646 + Fee to the baker: ꜩ0.000666 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6646 bytes + Gas limit: 3010 + Storage limit: 6648 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000646 - payload fees(the block proposer) ....... +ꜩ0.000646 + [PUBLIC_KEY_HASH] ... -ꜩ0.000666 + payload fees(the block proposer) ....... +ꜩ0.000666 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: 2709.156 - Storage size: 6626 bytes + Consumed gas: 2909.164 + Storage size: 6628 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6565 - storage fees ........................... +ꜩ1.6565 + [PUBLIC_KEY_HASH] ... -ꜩ1.657 + storage fees ........................... +ꜩ1.657 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -77,8 +77,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: 2709.116 units (will add 100 for safety) -Estimated storage: 6616 bytes added (will add 20 for safety) +Estimated gas: 2909.124 units (will add 100 for safety) +Estimated storage: 6618 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. @@ -88,22 +88,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000636 + Fee to the baker: ꜩ0.000656 Expected counter: 3 - Gas limit: 2810 - Storage limit: 6636 bytes + Gas limit: 3010 + Storage limit: 6638 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000636 - payload fees(the block proposer) ....... +ꜩ0.000636 + [PUBLIC_KEY_HASH] ... -ꜩ0.000656 + payload fees(the block proposer) ....... +ꜩ0.000656 Originate smart contract rollup of kind arith and type string with boot sector '31' This smart contract rollup origination was successfully applied - Consumed gas: 2709.116 - Storage size: 6616 bytes + Consumed gas: 2909.124 + Storage size: 6618 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.6545 + storage fees ........................... +ꜩ1.6545 ./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- 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 9b20e4d284dd24aed09502da16160c7c9321a164..f901ef68e52f508a0f6704e666715fa5508e87fd 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,20 +12,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 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 9b20e4d284dd24aed09502da16160c7c9321a164..f901ef68e52f508a0f6704e666715fa5508e87fd 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,20 +12,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 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 9b20e4d284dd24aed09502da16160c7c9321a164..f901ef68e52f508a0f6704e666715fa5508e87fd 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,20 +12,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 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 5fb3471ba05af5503f5486dc6660cf524a3dbfb0..499cf9d85dd2ba38f11752ddc089df7d9d5b73e1 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,28 +12,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -43,28 +43,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 2 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -74,28 +74,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 3 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -105,28 +105,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 4 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -136,28 +136,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 5 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -167,28 +167,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 6 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -198,28 +198,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 7 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -229,28 +229,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 8 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -260,28 +260,28 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 9 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -291,20 +291,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 10 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 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 88203ec8c5f201d4ce5e9a8be24600169ac97437..d46f9bc613793c6712c16e9ae92d1691c1fe303e 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 ba56d5213556ad2be9ebfaea8c130414fa9d74ef..ccc952ab887d716cb0ba947ca74b503efc70b0e9 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out index a207ee3903b4431e29c037c4655304d67c801ec2..a9ed48c54c7fa46cd0c58efd80e53ec5523b8ba1 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 637a3956c5d0e8883e8a736af99eeb2ca261c498..615299b81703b496c130071adca90117b5b2a53c 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 (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 237b9fec99f0dc2fc0a62d1e238296c489bace6e..16b257c3329004250a54361adcbdb86b33020cfd 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 5fcb80206a651e4ff0901427c46c7998acdbfa18..d1a40926cf08d4a8e96a5f797f639c56aeb01cdc 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 (message.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out index 0f0ce47ab835bad8fe13737acf14c6cd37f24eb6..453fb0aa902c1790b48dd261868e43d9c09feade 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 (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 f05550fb17ac68e9251b36596be2be6acb801f9d..39c492356b61896246060be4a2ab68beda3e5c83 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 6445ff3d0188618f01305965c16156d17fb0ed9d..ee931e29c544fa63254bdd87fb2d63d985e3d676 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 (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 242f3219a8246fe5a263e80c21290dfc898cd90c..2b455715acab2f8f459c8b7a16af9ab2936d9a29 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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 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 0033f2eaf55002c04deb6b0a4cf6e8be97ec06b3..1acecb5ff894d28933f334a4d3b2f8737b767a7d 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_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 b4c36f530f666f9a54a87231b8f74b9c040ff354..4002e11a37aedfa14fa19556188ae110e728c251 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_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 2e2c6a76348ddebe28f5a8c78d1a928aa9909eb9..9f78bf45a120bed49aa8e40d194099dbc8c4ce02 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_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 f1373a5831dac6e4380145d57c4c0bb4ee195224..96055073a0df914074c0b1a6f482d2381dac33d2 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: 2709.156 units (will add 100 for safety) -Estimated storage: 6626 bytes added (will add 20 for safety) +Estimated gas: 2909.164 units (will add 100 for safety) +Estimated storage: 6628 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,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000646 + Fee to the baker: ꜩ0.000666 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6646 bytes + Gas limit: 3010 + Storage limit: 6648 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000646 - payload fees(the block proposer) ....... +ꜩ0.000646 + [PUBLIC_KEY_HASH] ... -ꜩ0.000666 + payload fees(the block proposer) ....... +ꜩ0.000666 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: 2709.156 - Storage size: 6626 bytes + Consumed gas: 2909.164 + Storage size: 6628 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6565 - storage fees ........................... +ꜩ1.6565 + [PUBLIC_KEY_HASH] ... -ꜩ1.657 + storage fees ........................... +ꜩ1.657 ./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 9b20e4d284dd24aed09502da16160c7c9321a164..f901ef68e52f508a0f6704e666715fa5508e87fd 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,20 +12,20 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 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 5cc7ec561d32c2f6d638060593ffcf76309d0f1e..8e756c561af593a9534426bfc2772a2e1c32d407 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap1 to '[SC_ROLLUP_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 733d44ea61801e36b8737e8e092eefb7a2da2ad4..b3f113e782f9d94a19c0b806783d818d3f88c24e 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: 2709.108 units (will add 100 for safety) -Estimated storage: 6614 bytes added (will add 20 for safety) +Estimated gas: 2909.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]' NOT waiting for the operation to be included. @@ -12,22 +12,22 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000634 + Fee to the baker: ꜩ0.000654 Expected counter: 1 - Gas limit: 2810 - Storage limit: 6634 bytes + Gas limit: 3010 + Storage limit: 6636 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000634 - payload fees(the block proposer) ....... +ꜩ0.000634 + [PUBLIC_KEY_HASH] ... -ꜩ0.000654 + payload fees(the block proposer) ....... +ꜩ0.000654 Originate smart contract rollup of kind arith and type string with boot sector '' This smart contract rollup origination was successfully applied - Consumed gas: 2709.108 - Storage size: 6614 bytes + Consumed gas: 2909.116 + Storage size: 6616 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6535 - storage fees ........................... +ꜩ1.6535 + [PUBLIC_KEY_HASH] ... -ꜩ1.654 + storage fees ........................... +ꜩ1.654 ./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]'