diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml index 14e29f2d6c9875ed82171edffef6630a5aaf2cf7..5ff7a524d3b82cbba820c7055e559e03cd8a4fb5 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml @@ -73,6 +73,15 @@ module Constants = struct number of ticks (both int32) is negligible. *) let cost_serialize_commitment = S_syntax.(cost_serialize_state_hash + cost_serialize_commitment_hash) + + (* Cost of serializing an operation hash. *) + let cost_serialize_operation_hash = + let len = S.safe_int Operation_hash.size in + S_syntax.(cost_encode_string_per_byte * len) + + (* Cost of serializing a nonce. The cost of serializing the index (an int32) + is negligible. *) + let cost_serialize_nonce = cost_serialize_operation_hash end (* We assume that the gas cost of adding messages [[ m_1; ... ; m_n]] at level diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.mli b/src/proto_alpha/lib_protocol/sc_rollup_costs.mli index 7cc527a08641889b3c133b74722ff9a80e188e8c..5b47cc667a711f63cfe7ec33be85c8e216edfffa 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.mli @@ -40,6 +40,8 @@ module Constants : sig val cost_serialize_commitment_hash : Gas_limit_repr.cost val cost_serialize_commitment : Gas_limit_repr.cost + + val cost_serialize_nonce : Gas_limit_repr.cost end (** [is_valid_parameters_ty_cost ty] returns the cost of checking whether a type diff --git a/src/proto_alpha/lib_protocol/sc_rollup_errors.ml b/src/proto_alpha/lib_protocol/sc_rollup_errors.ml index 48e47ed1d69dd9585e05cc2ceec7e1ce3cbed872..3e693a2e6e2aa05bbdf71687f54bc5a3820f920a 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_errors.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_errors.ml @@ -68,6 +68,7 @@ type error += min_expected_balance : Tez_repr.t; } | (* `Temporary *) Sc_rollup_bad_commitment_serialization + | (* `Permanent *) Sc_rollup_address_generation let () = register_error_kind @@ -442,4 +443,14 @@ let () = Data_encoding.empty (function Sc_rollup_bad_commitment_serialization -> Some () | _ -> None) (fun () -> Sc_rollup_bad_commitment_serialization) ; + let description = "Error while generating rollup address" in + register_error_kind + `Permanent + ~id:"rollup.error_smart_contract_rollup_address_generation" + ~title:description + ~pp:(fun ppf () -> Format.fprintf ppf "%s" description) + ~description + Data_encoding.empty + (function Sc_rollup_address_generation -> Some () | _ -> None) + (fun () -> Sc_rollup_address_generation) ; () diff --git a/src/proto_alpha/lib_protocol/sc_rollup_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_repr.ml index b541fb1ff35a1a10df5325106b4adf9cb12ad0eb..01c1d9d6d9bd2d18e59ca02751adff0e74f23370 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_repr.ml @@ -50,27 +50,6 @@ module Address = struct include Path_encoding.Make_hex (H) - type error += (* `Permanent *) Error_sc_rollup_address_generation - - let () = - let open Data_encoding in - let msg = "Error while generating rollup address" in - register_error_kind - `Permanent - ~id:"rollup.error_smart_contract_rollup_address_generation" - ~title:msg - ~pp:(fun ppf () -> Format.fprintf ppf "%s" msg) - ~description:msg - unit - (function Error_sc_rollup_address_generation -> Some () | _ -> None) - (fun () -> Error_sc_rollup_address_generation) - - let from_nonce nonce = - Data_encoding.Binary.to_bytes_opt Origination_nonce.encoding nonce - |> function - | None -> error Error_sc_rollup_address_generation - | Some nonce -> ok @@ hash_bytes [nonce] - let of_b58data = function H.Data h -> Some h | _ -> None end diff --git a/src/proto_alpha/lib_protocol/sc_rollup_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_repr.mli index 42967ec9d02775fc0db98140a1328a471117bb15..7e317f1c4d5db0dea16fb7d8e9c26821f336741b 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_repr.mli @@ -44,10 +44,6 @@ module Address : sig include S.HASH - (** [from_nonce nonce] produces an address completely determined by - an operation hash and an origination counter. *) - val from_nonce : Origination_nonce.t -> t tzresult - (** [encoded_size] is the number of bytes needed to represent an address. *) val encoded_size : int diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index 1f31a5a4ae161cfb5362faa866640fc0e11b674a..bb45a9031b6d31274beccd9fccb0930bd77ca755 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -29,6 +29,24 @@ module Store = Storage.Sc_rollup module Commitment = Sc_rollup_commitment_repr module Commitment_hash = Commitment.Hash +(** [address_from_nonce ctxt nonce] produces an address completely determined by + an operation hash and an origination counter, and accounts for gas spent. *) +let address_from_nonce ctxt nonce = + let open Tzresult_syntax in + let* ctxt = + Raw_context.consume_gas ctxt Sc_rollup_costs.Constants.cost_serialize_nonce + in + match Data_encoding.Binary.to_bytes_opt Origination_nonce.encoding nonce with + | None -> error Sc_rollup_address_generation + | Some nonce_bytes -> + let bytes_len = Bytes.length nonce_bytes in + let+ ctxt = + Raw_context.consume_gas + ctxt + (Sc_rollup_costs.cost_hash_bytes ~bytes_len) + in + (ctxt, Sc_rollup_repr.Address.hash_bytes [nonce_bytes]) + let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let open Lwt_tzresult_syntax in let*? ctxt, genesis_commitment_hash = @@ -36,7 +54,7 @@ let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = in let*? ctxt, nonce = Raw_context.increment_origination_nonce ctxt in let level = Raw_context.current_level ctxt in - let*? address = Sc_rollup_repr.Address.from_nonce nonce in + let*? ctxt, address = address_from_nonce ctxt nonce in let* ctxt, pvm_kind_size, _kind_existed = Store.PVM_kind.add ctxt address kind in 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 0aa872b1f5e109e2fbfce0dde087b792db51515a..cf3a1bd89232444cc8cdf31ac230af61be2dde81 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out index d6300a3dacb09482c78b5681837ccff34af2cc3a..0130dffc589a3fcf0e647f330e0c33008ec89583 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out index 4c959b604dc875a169f6d245a1ec641aef290eff..b724e1d642fcebd2765dafb7ca0ba96b14857099 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out index c1554ec9e0128b6520c6ebdf1014692f29c3ee31..ebdd3d87973c7bcfd2c7e140858b24f822cb9804 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out index bdcb605c06892a2f3da6c571712c65e92f85598a..5e05f2a3b52e724fd4efb0d3cacdcd5713810697 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.947 units (will add 100 for safety) +Estimated gas: 3110.481 units (will add 100 for safety) Estimated storage: 6664 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000686 + Fee to the baker: ꜩ0.000687 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6684 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000687 + payload fees(the block proposer) ....... +ꜩ0.000687 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 3109.947 + Consumed gas: 3110.481 Storage size: 6664 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -81,7 +81,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with 31 --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.907 units (will add 100 for safety) +Estimated gas: 3110.441 units (will add 100 for safety) Estimated storage: 6654 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -92,19 +92,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000676 + Fee to the baker: ꜩ0.000677 Expected counter: 3 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6674 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000676 - payload fees(the block proposer) ....... +ꜩ0.000676 + [PUBLIC_KEY_HASH] ... -ꜩ0.000677 + payload fees(the block proposer) ....... +ꜩ0.000677 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '31' This smart contract rollup origination was successfully applied - Consumed gas: 3109.907 + Consumed gas: 3110.441 Storage size: 6654 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out index 4c959b604dc875a169f6d245a1ec641aef290eff..b724e1d642fcebd2765dafb7ca0ba96b14857099 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out index 4c959b604dc875a169f6d245a1ec641aef290eff..b724e1d642fcebd2765dafb7ca0ba96b14857099 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out index 4c959b604dc875a169f6d245a1ec641aef290eff..b724e1d642fcebd2765dafb7ca0ba96b14857099 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out index 5cff8dbbeb08ae4a49d571a4a514eb8de7bc8544..bbed38e219521b2d406a8b3f9a330f144963a98e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -35,7 +35,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -46,19 +46,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 2 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -69,7 +69,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -80,19 +80,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 3 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -103,7 +103,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -114,19 +114,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 4 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -137,7 +137,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -148,19 +148,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 5 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -171,7 +171,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -182,19 +182,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 6 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -205,7 +205,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -216,19 +216,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 7 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -239,7 +239,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -250,19 +250,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 8 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -273,7 +273,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -284,19 +284,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 9 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] @@ -307,7 +307,7 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -318,19 +318,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 10 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out index fb51fa2758ecf11e2edadda9b4a655bfcf0bdf30..08590ead7418535fb54e12bfea327c249f5eea91 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out index bd9b7565630ad11c8220e3e9255b65c37f206441..8e6a76a47ca36aabf3c87e1553fbd25664838b28 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out index 613ab9064cc1fbf3f04183c4ca5f48a2182e1669..db59c6eefa370fd8345992560882c8188b946def 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out index 57d9029ff8d0c0e00e85f0a308bc9a46d41e027f..25b3189d790216acf7dc3142a579b319fa0dece7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out index 5f48be9179b9bf134db2e7ffdfe80be7c0a41aef..40a955bce5d03b3209ce620e27e40c73eb1956f8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out index 4673ebf956f78353d8dbb5f279a559afdad4709c..83c21f2b2bebcde70a5aff6578a9ec1eb628c0ee 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out index 9d8e8103bfdd42ab81f5c131f7aa3b6df57d58c1..7d6e55760bc84efa2e88bb18c3c3b6d6c69df5db 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out index 956a73c509e5e88a7eceefd195dc4f8e64fb1f59..a72d01c1a9e2f64403b6cf8e45376e359b8c343f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out index 427cae810c2bb372b87ba13e97b201de317c065a..bb58653f42a0bccf03c9bdd7be95444309de33c0 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out index 0cb295c073cce28609e1929fc64085b57674a5f5..e584dd916842337327bef20b0f8ffef084538b44 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out index b4add3236dd484d093c8507d0493275f9b1016b5..6a35e729e3f2e9961448b770222f22a6b902e3b0 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out index bf9f007522927d17ad8e09c38252cc4a2a95cf7e..ee3b8fe798117c66210b07d7402bffcb5d84a263 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out index 1e2eeb737e671270c51c32116b262f47cc583833..a7b9d7ac615d95e3fadf3d6e2fca08f972dcb0d2 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out index 45f6b433b20d1454bf3a96f65c4153de60fb7bbe..ffeaeffc8aba1818d3ffde531c6c545f3f00e0d1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out index e6e6a8133e40364d4cef3118f768f87c240f0688..e9498c3a5b072cf69bbe0877d0867c74357c9680 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out index e6e6a8133e40364d4cef3118f768f87c240f0688..e9498c3a5b072cf69bbe0877d0867c74357c9680 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out index 01e610c368fb65a12faab88efea98bc6c9e118e9..5212f78ae5203af30f435ef2966a893780ae7770 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out index 979f4b7b0907682fdbee44c428d5d321b5d874bc..c4f2da62656433384f52343ad5f9212f2235583b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out index e6e6a8133e40364d4cef3118f768f87c240f0688..e9498c3a5b072cf69bbe0877d0867c74357c9680 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out index e6e6a8133e40364d4cef3118f768f87c240f0688..e9498c3a5b072cf69bbe0877d0867c74357c9680 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out index e96cdffcd407d3abb8bcf449c4d97cda96a8f5f8..ec284d1695bdb9f74c2d47aa27822d93e1f115b8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out index f20d3a5fc5a4bdfbcfcc82fee32f90f3a8f5c780..4a7ba79bd4c9d559b0c31fccf9db65c4cdceb12f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out index e6e6a8133e40364d4cef3118f768f87c240f0688..e9498c3a5b072cf69bbe0877d0867c74357c9680 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out index e6e6a8133e40364d4cef3118f768f87c240f0688..e9498c3a5b072cf69bbe0877d0867c74357c9680 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out index a511f54f8a1fe3ae5074476997e9807273dd9e6e..35bc9265095f5ecd0f800c9eba628bfab2b1be62 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.947 units (will add 100 for safety) +Estimated gas: 3110.481 units (will add 100 for safety) Estimated storage: 6664 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000686 + Fee to the baker: ꜩ0.000687 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6684 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000686 - payload fees(the block proposer) ....... +ꜩ0.000686 + [PUBLIC_KEY_HASH] ... -ꜩ0.000687 + payload fees(the block proposer) ....... +ꜩ0.000687 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 3109.947 + Consumed gas: 3110.481 Storage size: 6664 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out index 4c959b604dc875a169f6d245a1ec641aef290eff..b724e1d642fcebd2765dafb7ca0ba96b14857099 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out index dfb1b838d5835fa795466554f86e455ed9ed9101..23921f9a9c2fb5e8ec74040889353e3e1f019cee 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out index 9cf0fbe74deac617171c7bd135da8570fea02dcf..03a5279fa7f7f33fda8f681ee77a03a1d696191b 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out @@ -1,7 +1,7 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3109.899 units (will add 100 for safety) +Estimated gas: 3110.433 units (will add 100 for safety) Estimated storage: 6652 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -12,19 +12,19 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000674 + Fee to the baker: ꜩ0.000675 Expected counter: 1 - Gas limit: 3210 + Gas limit: 3211 Storage limit: 6672 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000674 - payload fees(the block proposer) ....... +ꜩ0.000674 + [PUBLIC_KEY_HASH] ... -ꜩ0.000675 + payload fees(the block proposer) ....... +ꜩ0.000675 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.899 + Consumed gas: 3110.433 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH]