diff --git a/src/proto_alpha/bin_sc_rollup_node/RPC_server.ml b/src/proto_alpha/bin_sc_rollup_node/RPC_server.ml index e34755c46787ae05ed505fd04c8959905e8b7539..f0aa3b828ddcd82bed7459fe47edb136c151cf72 100644 --- a/src/proto_alpha/bin_sc_rollup_node/RPC_server.ml +++ b/src/proto_alpha/bin_sc_rollup_node/RPC_server.ml @@ -53,7 +53,8 @@ let get_dal_slot_subscriptions_exn store = | Some slot_subscriptions -> return slot_subscriptions let commitment_with_hash commitment = - (Protocol.Alpha_context.Sc_rollup.Commitment.hash commitment, commitment) + ( Protocol.Alpha_context.Sc_rollup.Commitment.hash_uncarbonated commitment, + commitment ) module Common = struct let register_current_num_messages store dir = diff --git a/src/proto_alpha/bin_sc_rollup_node/commitment.ml b/src/proto_alpha/bin_sc_rollup_node/commitment.ml index 26ce1f43ca52b43467a2f98345b33db90e87dcd2..661e27db64acf2b3d4a5448e30cd89bcbc08670f 100644 --- a/src/proto_alpha/bin_sc_rollup_node/commitment.ml +++ b/src/proto_alpha/bin_sc_rollup_node/commitment.ml @@ -125,7 +125,7 @@ let last_commitment_hash node_ctxt let open Lwt_syntax in let+ last_commitment = last_commitment (module Last_commitment_level) store in match last_commitment with - | Some commitment -> Sc_rollup.Commitment.hash commitment + | Some commitment -> Sc_rollup.Commitment.hash_uncarbonated commitment | None -> node_ctxt.Node_context.genesis_info.Sc_rollup.Commitment.commitment_hash @@ -141,7 +141,7 @@ let must_store_commitment node_ctxt current_level store = let update_last_stored_commitment store (commitment : Sc_rollup.Commitment.t) = let open Lwt_syntax in - let commitment_hash = Sc_rollup.Commitment.hash commitment in + let commitment_hash = Sc_rollup.Commitment.hash_uncarbonated commitment in let inbox_level = commitment.inbox_level in let* lcc_level = Store.Last_cemented_commitment_level.get store in (* Do not change the order of these two operations. This guarantees that diff --git a/src/proto_alpha/bin_sc_rollup_node/refutation_game_event.ml b/src/proto_alpha/bin_sc_rollup_node/refutation_game_event.ml index 0c1bd39d34bd492e2224c73de979ac66e75ef086..1fbe9d13e79bb18671ba9f37d80b0b50342a9727 100644 --- a/src/proto_alpha/bin_sc_rollup_node/refutation_game_event.ml +++ b/src/proto_alpha/bin_sc_rollup_node/refutation_game_event.ml @@ -130,9 +130,11 @@ let timeout_backtracked players = Simple.(emit timeout_backtracked players) let timeout_skipped players = Simple.(emit timeout_skipped players) let conflict_detected (conflict : Sc_rollup.Refutation_storage.conflict) = - let our_commitment_hash = Sc_rollup.Commitment.hash conflict.our_commitment in + let our_commitment_hash = + Sc_rollup.Commitment.hash_uncarbonated conflict.our_commitment + in let their_commitment_hash = - Sc_rollup.Commitment.hash conflict.their_commitment + Sc_rollup.Commitment.hash_uncarbonated conflict.their_commitment in let parent_commitment_hash = conflict.parent_commitment in let other = conflict.other in diff --git a/src/proto_alpha/lib_protocol/alpha_context.mli b/src/proto_alpha/lib_protocol/alpha_context.mli index 3e8fc9f752975bf15b9f36dafb9d71f54ad35bec..35ab2c26cfa0a50685dfaa373b567fc98f47a48f 100644 --- a/src/proto_alpha/lib_protocol/alpha_context.mli +++ b/src/proto_alpha/lib_protocol/alpha_context.mli @@ -3233,7 +3233,9 @@ module Sc_rollup : sig val pp : Format.formatter -> t -> unit - val hash : t -> Hash.t + val hash_uncarbonated : t -> Hash.t + + val hash : context -> t -> (context * Hash.t) tzresult val genesis_commitment : origination_level:Raw_level.t -> genesis_state_hash:State_hash.t -> t diff --git a/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.ml index b6bde1effef3de57a6cf2900ecc7990292da1687..f6c4393837304b8212c974f8ce08b7794e67b13c 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.ml @@ -91,7 +91,7 @@ module V1 = struct (req "predecessor" Hash.encoding) (req "number_of_ticks" Number_of_ticks.encoding)) - let hash commitment = + let hash_uncarbonated commitment = let commitment_bytes = Data_encoding.Binary.to_bytes_exn encoding commitment in diff --git a/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.mli b/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.mli index 53fed4aabfd9d8265b669fc8ac55b12b83abd4b5..0346e476d141cdaa9e34d174fb775ba26f417723 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.mli @@ -64,7 +64,7 @@ module V1 : sig val encoding : t Data_encoding.t - val hash : t -> Hash.t + val hash_uncarbonated : t -> Hash.t (** [genesis_commitment ~origination_level ~genesis_state_hash] is the commitment that the protocol "publish" and "cement" when originating a new diff --git a/src/proto_alpha/lib_protocol/sc_rollup_commitment_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_commitment_storage.ml index 6a01a12ebdbb951ed98eb781f1285bedfca81837..b6e5f1f23abc6097f67430cb85be674eb3d0317a 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_commitment_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_commitment_storage.ml @@ -74,3 +74,26 @@ let get_predecessor_unsafe ctxt rollup node = let open Lwt_tzresult_syntax in let* commitment, ctxt = get_commitment_unsafe ctxt rollup node in return (commitment.predecessor, ctxt) + +let hash ctxt commitment = + let open Tzresult_syntax in + let* ctxt = + Raw_context.consume_gas + ctxt + Sc_rollup_costs.Constants.cost_serialize_commitment + in + let commitment_bytes_opt = + Data_encoding.Binary.to_bytes_opt + Sc_rollup_commitment_repr.encoding + commitment + in + let* commitment_bytes = + Option.to_result + ~none:(trace_of_error Sc_rollup_bad_commitment_serialization) + commitment_bytes_opt + in + let bytes_len = Bytes.length commitment_bytes in + let* ctxt = + Raw_context.consume_gas ctxt (Sc_rollup_costs.cost_hash_bytes ~bytes_len) + in + return (ctxt, Sc_rollup_commitment_repr.Hash.hash_bytes [commitment_bytes]) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_commitment_storage.mli b/src/proto_alpha/lib_protocol/sc_rollup_commitment_storage.mli index 0934c5adf4958b2d970e3316897d2de4b4a5b28d..95e8ae6936015d6250cbea1783d61b6d9c35e10f 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_commitment_storage.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_commitment_storage.mli @@ -196,3 +196,7 @@ val get_predecessor_unsafe : Sc_rollup_repr.t -> Commitment_hash.t -> (Commitment_hash.t * Raw_context.t) tzresult Lwt.t + +(** Hash a commitment and account for gas spent. *) +val hash : + Raw_context.t -> Commitment.t -> (Raw_context.t * Commitment_hash.t) tzresult diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml index ea85e5b36deb32eadb58094d54dde25978b4b0fb..14e29f2d6c9875ed82171edffef6630a5aaf2cf7 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.ml @@ -31,6 +31,8 @@ module S_syntax = struct let ( + ) = S.add let ( * ) = S.mul + + let ( lsr ) = S.shift_right end module Constants = struct @@ -56,6 +58,21 @@ module Constants = struct by the number of characters of a pkh, i.e. 70/35. To be updated when benchmarking is completed. *) let cost_encode_string_per_byte = S.safe_int 2 + + (* Cost of serializing a state hash. *) + let cost_serialize_state_hash = + let len = S.safe_int State_hash.size in + S_syntax.(cost_encode_string_per_byte * len) + + (* Cost of serializing a commitment hash. *) + let cost_serialize_commitment_hash = + let len = S.safe_int Sc_rollup_commitment_repr.Hash.size in + S_syntax.(cost_encode_string_per_byte * len) + + (* Cost of serializing a commitment. The cost of serializing the level and + number of ticks (both int32) is negligible. *) + let cost_serialize_commitment = + S_syntax.(cost_serialize_state_hash + cost_serialize_commitment_hash) end (* We assume that the gas cost of adding messages [[ m_1; ... ; m_n]] at level @@ -103,3 +120,9 @@ let cost_deserialize_output_proof ~bytes_len = let cost_serialize_external_inbox_message ~bytes_len = let len = S.safe_int bytes_len in S_syntax.(Constants.cost_encode_string_per_byte * len) + +(* Equal to Michelson_v1_gas.Cost_of.Interpreter.blake2b. *) +let cost_hash_bytes ~bytes_len = + let open S_syntax in + let v0 = S.safe_int bytes_len in + S.safe_int 430 + v0 + (v0 lsr 3) diff --git a/src/proto_alpha/lib_protocol/sc_rollup_costs.mli b/src/proto_alpha/lib_protocol/sc_rollup_costs.mli index 2b6939922627c94f7980ef64f229686d59a239f1..7cc527a08641889b3c133b74722ff9a80e188e8c 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_costs.mli +++ b/src/proto_alpha/lib_protocol/sc_rollup_costs.mli @@ -34,6 +34,12 @@ module Constants : sig val cost_add_inbox_per_level : Gas_limit_repr.cost val cost_update_num_and_size_of_messages : Gas_limit_repr.cost + + val cost_serialize_state_hash : Gas_limit_repr.cost + + val cost_serialize_commitment_hash : Gas_limit_repr.cost + + val cost_serialize_commitment : Gas_limit_repr.cost end (** [is_valid_parameters_ty_cost ty] returns the cost of checking whether a type @@ -69,3 +75,6 @@ val cost_deserialize_output_proof : bytes_len:int -> Gas_limit_repr.cost serialization of an external inbox message of length [bytes_len]. It is equal to the estimated cost of encoding a byte multiplied by [bytes_len]. *) val cost_serialize_external_inbox_message : bytes_len:int -> Gas_limit_repr.cost + +(** [cost_hash_bytes ~bytes_len] is the cost of hashing [bytes_len] bytes. *) +val cost_hash_bytes : bytes_len:int -> Gas_limit_repr.cost diff --git a/src/proto_alpha/lib_protocol/sc_rollup_errors.ml b/src/proto_alpha/lib_protocol/sc_rollup_errors.ml index af122706389f5019eb558518a0a4b1bcbf5429a7..48e47ed1d69dd9585e05cc2ceec7e1ce3cbed872 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_errors.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_errors.ml @@ -67,6 +67,7 @@ type error += staker_balance : Tez_repr.t; min_expected_balance : Tez_repr.t; } + | (* `Temporary *) Sc_rollup_bad_commitment_serialization let () = register_error_kind @@ -431,4 +432,14 @@ let () = (fun (staker, sc_rollup, staker_balance, min_expected_balance) -> Sc_rollup_staker_funds_too_low {staker; sc_rollup; staker_balance; min_expected_balance}) ; + let description = "Could not serialize commitment." in + register_error_kind + `Temporary + ~id:"Sc_rollup_bad_commitment_serialization" + ~title:"Could not serialize commitment." + ~description:"Unable to hash the commitment serialization." + ~pp:(fun ppf () -> Format.fprintf ppf "%s" description) + Data_encoding.empty + (function Sc_rollup_bad_commitment_serialization -> Some () | _ -> None) + (fun () -> Sc_rollup_bad_commitment_serialization) ; () diff --git a/src/proto_alpha/lib_protocol/sc_rollup_stake_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_stake_storage.ml index 0c24a69dc6c855674541a4ad17c13d81340a47b5..84c9cbfe586f4ca9aa67c6fc96c494fb6b11362e 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_stake_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_stake_storage.ml @@ -255,7 +255,7 @@ let refine_stake ctxt rollup staker staked_on commitment = let open Lwt_tzresult_syntax in let* lcc, ctxt = Commitment_storage.last_cemented_commitment ctxt rollup in let* ctxt = assert_refine_conditions_met ctxt rollup lcc commitment in - let new_hash = Commitment.hash commitment in + let*? ctxt, new_hash = Sc_rollup_commitment_storage.hash ctxt commitment in (* TODO: https://gitlab.com/tezos/tezos/-/issues/2559 Add a test checking that L2 nodes can catch up after going offline. *) let rec go node ctxt = diff --git a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml index c021c58c8eeec1d6cd3d53e840a10373f518c610..1f31a5a4ae161cfb5362faa866640fc0e11b674a 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_storage.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_storage.ml @@ -31,8 +31,8 @@ module Commitment_hash = Commitment.Hash let originate ctxt ~kind ~boot_sector ~parameters_ty ~genesis_commitment = let open Lwt_tzresult_syntax in - let genesis_commitment_hash = - Sc_rollup_commitment_repr.hash genesis_commitment + let*? ctxt, genesis_commitment_hash = + Sc_rollup_commitment_storage.hash ctxt genesis_commitment in let*? ctxt, nonce = Raw_context.increment_origination_nonce ctxt in let level = Raw_context.current_level ctxt in diff --git a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml index fe6d792390698911c02520658005b4b3f742b54d..50fb11c885453dc653805bf54b6bbb0d03d2bb8f 100644 --- a/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml +++ b/src/proto_alpha/lib_protocol/test/integration/operations/test_sc_rollup.ml @@ -382,6 +382,13 @@ let originate_contract incr ~script ~baker ~storage ~source_contract = let* incr = Incremental.begin_construction block in return (contract, incr) +let hash_commitment incr commitment = + let ctxt = Incremental.alpha_ctxt incr in + let+ ctxt, hash = + wrap @@ Lwt.return (Sc_rollup.Commitment.hash ctxt commitment) + in + (Incremental.set_alpha_ctxt incr ctxt, hash) + let publish_and_cement_commitment incr ~baker ~originator rollup commitment = let* operation = Op.sc_rollup_publish (I incr) originator rollup commitment in let* incr = Incremental.add_operation incr operation in @@ -390,10 +397,10 @@ let publish_and_cement_commitment incr ~baker ~originator rollup commitment = let* block = Block.bake_n constants.parametric.sc_rollup.challenge_window_in_blocks block in - let hash = Sc_rollup.Commitment.hash commitment in let* incr = Incremental.begin_construction ~policy:Block.(By_account baker) block in + let* incr, hash = hash_commitment incr commitment in let* cement_op = Op.sc_rollup_cement (I incr) originator rollup hash in let* incr = Incremental.add_operation incr cement_op in let* block = Incremental.finalize_block incr in @@ -577,7 +584,7 @@ let test_publish_cement_and_recover_bond () = Block.bake_n constants.parametric.sc_rollup.challenge_window_in_blocks b in let* i = Incremental.begin_construction b in - let hash = Sc_rollup.Commitment.hash c in + let* i, hash = hash_commitment i c in (* stake not on LCC *) let* () = recover_bond_not_lcc i contract rollup in let* cement_op = Op.sc_rollup_cement (I i) contract rollup hash in @@ -651,7 +658,7 @@ let test_cement_fails_on_conflict () = Block.bake_n constants.parametric.sc_rollup.challenge_window_in_blocks b in let* i = Incremental.begin_construction b in - let hash = Sc_rollup.Commitment.hash commitment1 in + let* i, hash = hash_commitment i commitment1 in let* cement_op = Op.sc_rollup_cement (I i) contract1 rollup hash in let expect_apply_failure = function | Environment.Ecoproto_error (Sc_rollup_errors.Sc_rollup_disputed as e) :: _ @@ -673,7 +680,7 @@ let commit_and_cement_after_n_bloc ?expect_apply_failure block contract rollup n (* This pattern would add an additional block, so we decrement [n] by one. *) let* b = Block.bake_n (n - 1) b in let* i = Incremental.begin_construction b in - let hash = Sc_rollup.Commitment.hash commitment in + let* i, hash = hash_commitment i commitment in let* cement_op = Op.sc_rollup_cement (I i) contract rollup hash in let* _ = Incremental.add_operation ?expect_apply_failure i cement_op in return_unit diff --git a/src/proto_alpha/lib_protocol/test/integration/validate/manager_operation_helpers.ml b/src/proto_alpha/lib_protocol/test/integration/validate/manager_operation_helpers.ml index 366828a02238cb94d2a0b4ab7a5b9beda2dd281a..e0b7f60c03abd2a0cc78bada8b0b595896ad0446 100644 --- a/src/proto_alpha/lib_protocol/test/integration/validate/manager_operation_helpers.ml +++ b/src/proto_alpha/lib_protocol/test/integration/validate/manager_operation_helpers.ml @@ -877,7 +877,7 @@ let mk_sc_rollup_cement (oinfos : operation_req) (infos : infos) = (B infos.ctxt.block) (contract_of infos.accounts.source) sc_rollup - (Sc_rollup.Commitment.hash sc_dummy_commitment) + (Sc_rollup.Commitment.hash_uncarbonated sc_dummy_commitment) let mk_sc_rollup_refute (oinfos : operation_req) (infos : infos) = let open Lwt_result_syntax in @@ -944,7 +944,7 @@ let mk_sc_rollup_execute_outbox_message (oinfos : operation_req) (infos : infos) (B infos.ctxt.block) (contract_of infos.accounts.source) sc_rollup - (Sc_rollup.Commitment.hash sc_dummy_commitment) + (Sc_rollup.Commitment.hash_uncarbonated sc_dummy_commitment) ~output_proof:"" let mk_sc_rollup_return_bond (oinfos : operation_req) (infos : infos) = 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 05f47b09ad8edb8cbfc868006b4f1698dc716889..0aa872b1f5e109e2fbfce0dde087b792db51515a 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 bb5608070541b43f2ebc07bbedc9f74d62977a06..d6300a3dacb09482c78b5681837ccff34af2cc3a 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 6f3468707429fc8d51e116b73b7993bad0a5e029..4c959b604dc875a169f6d245a1ec641aef290eff 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 1ab41503c7465dc941d591b1a6673dccd7cb9766..c1554ec9e0128b6520c6ebdf1014692f29c3ee31 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 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 Node is bootstrapped. -Estimated gas: 5781.044 units (will add 100 for safety) +Estimated gas: 5781.683 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -61,7 +61,7 @@ This sequence of operations was run: predecessor: [SC_ROLLUP_COMMITMENT_HASH] number_of_ticks: 1 This smart contract rollup commitment publishing was successfully applied - Consumed gas: 5781.044 + Consumed gas: 5781.683 Hash of commit: [SC_ROLLUP_COMMITMENT_HASH] Commitment published at level: 3 Balance updates: @@ -71,7 +71,7 @@ This sequence of operations was run: ./tezos-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state scs11VNjWyZw4Tgbvsom8epQbox86S2CKkE1UAZkXMM7Pj8MQMLzMf at inbox level 62 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 Node is bootstrapped. -Estimated gas: 4244.872 units (will add 100 for safety) +Estimated gas: 4245.511 units (will add 100 for safety) Estimated storage: no bytes added Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' @@ -84,7 +84,7 @@ This sequence of operations was run: From: [PUBLIC_KEY_HASH] Fee to the baker: ꜩ0.000772 Expected counter: 3 - Gas limit: 4345 + Gas limit: 4346 Storage limit: 0 bytes Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000772 @@ -97,7 +97,7 @@ This sequence of operations was run: predecessor: [SC_ROLLUP_COMMITMENT_HASH] number_of_ticks: 1 This smart contract rollup commitment publishing was successfully applied - Consumed gas: 4244.872 + Consumed gas: 4245.511 Hash of commit: [SC_ROLLUP_COMMITMENT_HASH] Commitment published at level: 4 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 b36cd46cb875566c3c05c2ca7704cb6e8dc6ba17..bdcb605c06892a2f3da6c571712c65e92f85598a 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.308 units (will add 100 for safety) +Estimated gas: 3109.947 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 3109.308 + Consumed gas: 3109.947 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.268 units (will add 100 for safety) +Estimated gas: 3109.907 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]' @@ -104,7 +104,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '31' This smart contract rollup origination was successfully applied - Consumed gas: 3109.268 + Consumed gas: 3109.907 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 6f3468707429fc8d51e116b73b7993bad0a5e029..4c959b604dc875a169f6d245a1ec641aef290eff 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 6f3468707429fc8d51e116b73b7993bad0a5e029..4c959b604dc875a169f6d245a1ec641aef290eff 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 6f3468707429fc8d51e116b73b7993bad0a5e029..4c959b604dc875a169f6d245a1ec641aef290eff 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 5f70c62de3ca9147c012e07e9ac02a064bb8329b..5cff8dbbeb08ae4a49d571a4a514eb8de7bc8544 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -58,7 +58,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -92,7 +92,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -126,7 +126,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -160,7 +160,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -194,7 +194,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -228,7 +228,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -262,7 +262,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -296,7 +296,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -330,7 +330,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 96b1e3fa5c5696b724e5943c4bdb512cd867484b..fb51fa2758ecf11e2edadda9b4a655bfcf0bdf30 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 1861a5184c5c7d836a2cded5886e824237de425b..bd9b7565630ad11c8220e3e9255b65c37f206441 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 1b9f34822ae3c3e57fa98131d239ad9cf6a039bf..613ab9064cc1fbf3f04183c4ca5f48a2182e1669 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 1f89335d05be6b55b9793779d77c5ce19a38ae7e..57d9029ff8d0c0e00e85f0a308bc9a46d41e027f 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 6076dcad5f55030388baac3e40065be1a48aa94e..5f48be9179b9bf134db2e7ffdfe80be7c0a41aef 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 59c907b43afac8ab6f0fe12b0d6b8ce62f9a985d..4673ebf956f78353d8dbb5f279a559afdad4709c 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 ebf6a368bbb18db405c83c39a322f2d8e50b0f3b..9d8e8103bfdd42ab81f5c131f7aa3b6df57d58c1 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 719a3ebe5d13b35189ac20110dcac2e82462b8f0..956a73c509e5e88a7eceefd195dc4f8e64fb1f59 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 29d4ee71be8fea2b5504ac1d24fa39b451c2f125..427cae810c2bb372b87ba13e97b201de317c065a 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 7a68cb0ade56c37dfb8fa123f9480a3abb13e10a..0cb295c073cce28609e1929fc64085b57674a5f5 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 fe982d05b62243e0a0c0c89d5cce8c44c7e989e2..b4add3236dd484d093c8507d0493275f9b1016b5 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 a27a22eb81ded248835b28c698d17b3b497c65ea..bf9f007522927d17ad8e09c38252cc4a2a95cf7e 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 ecb9c908cb87b49fa0fdbc4c33f5abecf565fe87..1e2eeb737e671270c51c32116b262f47cc583833 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 41e643b856197b24dc6103c55bc649c008d610c0..45f6b433b20d1454bf3a96f65c4153de60fb7bbe 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 fae3d5be60441e146ee7a968094ab2cc6ae756b5..e6e6a8133e40364d4cef3118f768f87c240f0688 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 fae3d5be60441e146ee7a968094ab2cc6ae756b5..e6e6a8133e40364d4cef3118f768f87c240f0688 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 c8514e1c385a349ef3750c4087faa2b461735309..01e610c368fb65a12faab88efea98bc6c9e118e9 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 6099128b769efeb666b168fc65e72bc09bdc41cd..979f4b7b0907682fdbee44c428d5d321b5d874bc 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 fae3d5be60441e146ee7a968094ab2cc6ae756b5..e6e6a8133e40364d4cef3118f768f87c240f0688 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 fae3d5be60441e146ee7a968094ab2cc6ae756b5..e6e6a8133e40364d4cef3118f768f87c240f0688 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 b37b0852040b5cc7902f93923a393f469f755769..e96cdffcd407d3abb8bcf449c4d97cda96a8f5f8 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 13b93702c795513816590027594d79afa5c8b7a4..f20d3a5fc5a4bdfbcfcc82fee32f90f3a8f5c780 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 fae3d5be60441e146ee7a968094ab2cc6ae756b5..e6e6a8133e40364d4cef3118f768f87c240f0688 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 fae3d5be60441e146ee7a968094ab2cc6ae756b5..e6e6a8133e40364d4cef3118f768f87c240f0688 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 908e95e03d3ff1914f89a14cb4a40dde961f389e..a511f54f8a1fe3ae5074476997e9807273dd9e6e 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.308 units (will add 100 for safety) +Estimated gas: 3109.947 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 3109.308 + Consumed gas: 3109.947 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 6f3468707429fc8d51e116b73b7993bad0a5e029..4c959b604dc875a169f6d245a1ec641aef290eff 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 e9258c69c7f9087cdaa8bb27841172d216414ca8..dfb1b838d5835fa795466554f86e455ed9ed9101 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 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 f633af4939bf0cb56499eb4cb18c9ef22a0c50e8..9cf0fbe74deac617171c7bd135da8570fea02dcf 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.260 units (will add 100 for safety) +Estimated gas: 3109.899 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]' @@ -24,7 +24,7 @@ This sequence of operations was run: Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3109.260 + Consumed gas: 3109.899 Storage size: 6652 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH]