diff --git a/src/proto_alpha/lib_protocol/sc_rollups.ml b/src/proto_alpha/lib_protocol/sc_rollups.ml index 8b048f662d6fbf3a2298d11018052857a2366094..dde3e046d15dd5bec5d1cc47179968c4f77f05fe 100644 --- a/src/proto_alpha/lib_protocol/sc_rollups.ml +++ b/src/proto_alpha/lib_protocol/sc_rollups.ml @@ -50,26 +50,9 @@ module Kind = struct *) type t = Example_arith | Wasm_2_0_0 - let example_arith_case = - Data_encoding.( - case - ~title:"Example_arith smart contract rollup kind" - (Tag 0) - unit - (function Example_arith -> Some () | _ -> None) - (fun () -> Example_arith)) - - let wasm_2_0_0_case = - Data_encoding.( - case - ~title:"Wasm 2.0.0 smart contract rollup kind" - (Tag 1) - unit - (function Wasm_2_0_0 -> Some () | _ -> None) - (fun () -> Wasm_2_0_0)) - let encoding = - Data_encoding.union ~tag_size:`Uint16 [example_arith_case; wasm_2_0_0_case] + Data_encoding.string_enum + [("arith_pvm_kind", Example_arith); ("wasm_2_0_0_pvm_kind", Wasm_2_0_0)] let equal x y = match (x, y) with @@ -137,16 +120,8 @@ type wrapped_proof = let wrapped_proof_module p = match p with | Unencodable p -> p - | Arith_pvm_with_proof p -> - let (module P) = p in - (module struct - include P - end : PVM_with_proof) - | Wasm_2_0_0_pvm_with_proof p -> - let (module P) = p in - (module struct - include P - end : PVM_with_proof) + | Arith_pvm_with_proof (module P) -> (module P) + | Wasm_2_0_0_pvm_with_proof (module P) -> (module P) let wrapped_proof_kind_exn : wrapped_proof -> Kind.t = function | Unencodable _ -> @@ -163,43 +138,53 @@ let wrapped_proof_encoding = case ~title:"Arithmetic PVM with proof" (Tag 0) - Sc_rollup_arith.Protocol_implementation.proof_encoding + (obj2 + (req "kind" @@ constant "arith_pvm_kind") + (req + "proof" + Sc_rollup_arith.Protocol_implementation.proof_encoding)) (function - | Arith_pvm_with_proof pvm -> - let (module P : PVM_with_proof - with type proof = - Sc_rollup_arith.Protocol_implementation.proof) = - pvm - in - Some P.proof - | _ -> None) - (fun proof -> - let module P = struct - include Sc_rollup_arith.Protocol_implementation - - let proof = proof - end in - Arith_pvm_with_proof (module P)); + | Arith_pvm_with_proof (module P) -> Some ((), P.proof) | _ -> None) + (fun ((), proof) -> + Arith_pvm_with_proof + (module struct + include Sc_rollup_arith.Protocol_implementation + + let proof = proof + end)); case ~title:"Wasm 2.0.0 PVM with proof" (Tag 1) - Sc_rollup_wasm.V2_0_0.Protocol_implementation.proof_encoding + (obj2 + (req "kind" @@ constant "wasm_2_0_0_pvm_kind") + (req + "proof" + Sc_rollup_wasm.V2_0_0.Protocol_implementation.proof_encoding)) (function - | Wasm_2_0_0_pvm_with_proof pvm -> - let (module P : PVM_with_proof - with type proof = - Sc_rollup_wasm.V2_0_0.Protocol_implementation.proof) = - pvm - in - Some P.proof + | Wasm_2_0_0_pvm_with_proof (module P) -> Some ((), P.proof) | _ -> None) - (fun proof -> - let module P = struct - include Sc_rollup_wasm.V2_0_0.Protocol_implementation - - let proof = proof - end in - Wasm_2_0_0_pvm_with_proof (module P)); + (fun ((), proof) -> + Wasm_2_0_0_pvm_with_proof + (module struct + include Sc_rollup_wasm.V2_0_0.Protocol_implementation + + let proof = proof + end)); + (* The later case is provided solely in order to provide error + messages in case someone tries to encode an [Unencodable] + proof. *) + case + ~title:"Unencodable" + (Tag 255) + empty + (function + | Unencodable (module P) -> + raise + (Invalid_argument + Format.( + sprintf "cannot encode Unencodable (PVM %s)" P.name)) + | _ -> None) + (fun () -> raise (Invalid_argument "cannot decode Unencodable")); ] in check_size Constants_repr.sc_max_wrapped_proof_binary_size encoding 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 cf3a1bd89232444cc8cdf31ac230af61be2dde81..6b90e13dc1d1b19a7b8948b0e6455f937ef1ac03 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (feature_flag_is_disabled).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 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 0130dffc589a3fcf0e647f330e0c33008ec89583..34f7a8772583b5d4004133d844c615d8bf4d2e6f 100644 --- a/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out +++ b/tezt/tests/expected/dal.ml/Alpha- Testing data availability layer functionality (rollup_node_dal_subscript.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from '[PUBLIC_KEY_HASH]' of kind arith of type unit booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: unit Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out index 57b53fd90abbbd35141dc2e351b3af1f9511d1c0..27747b4d4a8eba344ad90ec8891c8fd447b9349e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- configuration of a smart contract optimistic rollup node.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 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 05d20cd0590f886a25287355e4d647facddb1a84..25d8ddcfa51243656bbfb9241b7029b322136e60 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none publish commitment from '[PUBLIC_KEY_HASH]' for sc rollup '[SC_ROLLUP_HASH]' with compressed state scs11VNjWyZw4Tgbvsom8epQbox86S2CKkE1UAZkXMM7Pj8MQMLzMf at inbox level 32 and predecessor '[SC_ROLLUP_COMMITMENT_HASH]' and number of ticks 1 diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out index ec4a570b3a03a6c8225f9db96653231a4c42e07b..8c5bab4c1f428ad2eb4d409722b1e2b79f43f62c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.481 units (will add 100 for safety) -Estimated storage: 6664 bytes added (will add 20 for safety) +Estimated gas: 3110.477 units (will add 100 for safety) +Estimated storage: 6663 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000687 + Fee to the baker: ꜩ0.000686 Expected counter: 1 Gas limit: 3211 - Storage limit: 6684 bytes + Storage limit: 6683 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000687 - payload fees(the block proposer) ....... +ꜩ0.000687 + [PUBLIC_KEY_HASH] ... -ꜩ0.000686 + payload fees(the block proposer) ....... +ꜩ0.000686 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 3110.481 - Storage size: 6664 bytes + Consumed gas: 3110.477 + Storage size: 6663 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.666 - storage fees ........................... +ꜩ1.666 + [PUBLIC_KEY_HASH] ... -ꜩ1.66575 + storage fees ........................... +ꜩ1.66575 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' @@ -81,8 +81,8 @@ This sequence of operations was run: ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with 31 --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.441 units (will add 100 for safety) -Estimated storage: 6654 bytes added (will add 20 for safety) +Estimated gas: 3110.437 units (will add 100 for safety) +Estimated storage: 6653 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -92,25 +92,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000677 + Fee to the baker: ꜩ0.000676 Expected counter: 2 Gas limit: 3211 - Storage limit: 6674 bytes + Storage limit: 6673 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000677 - payload fees(the block proposer) ....... +ꜩ0.000677 + [PUBLIC_KEY_HASH] ... -ꜩ0.000676 + payload fees(the block proposer) ....... +ꜩ0.000676 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '31' This smart contract rollup origination was successfully applied - Consumed gas: 3110.441 - Storage size: 6654 bytes + Consumed gas: 3110.437 + Storage size: 6653 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.6635 - storage fees ........................... +ꜩ1.6635 + [PUBLIC_KEY_HASH] ... -ꜩ1.66325 + storage fees ........................... +ꜩ1.66325 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out index 57b53fd90abbbd35141dc2e351b3af1f9511d1c0..27747b4d4a8eba344ad90ec8891c8fd447b9349e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 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 57b53fd90abbbd35141dc2e351b3af1f9511d1c0..27747b4d4a8eba344ad90ec8891c8fd447b9349e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- get last cemented commitment hash and inbox level of a sc rollup.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 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 57b53fd90abbbd35141dc2e351b3af1f9511d1c0..27747b4d4a8eba344ad90ec8891c8fd447b9349e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- getting a smart-contract rollup address through the client.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 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 1816b7098d02ab095e163694f19bae1f791ce73c..3183b207a4f84bce9a5c008729f872d5c9c99be6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- list originated rollups.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,31 +12,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -46,31 +46,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 2 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -80,31 +80,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 3 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -114,31 +114,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 4 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -148,31 +148,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 5 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -182,31 +182,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 6 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -216,31 +216,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 7 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -250,31 +250,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 8 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -284,31 +284,31 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 9 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -318,23 +318,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 10 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 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 3fa88ae3315810b335e9f0fe9679ef6799b2b282..f54e9f7496dab26b33cff1b73cafb02c00fa10ab 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with internal messages.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out index ad0d0e009d57329c8acc6708b166747a57cb0701..019a55a58b210a938339962f3058ba27187470dc 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node advances PVM state with messages.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out index 149954abb58ba45efe391c1cfbfc6dbd949d6b22..5951d60d5d73ee383735aa73237b742b2d36d943 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (batcher.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (batcher.out index 97414af4272119d4ef60d3e2710b0e8fb959670c..da29f3207efc6c67f89c06e02d5080284bd783c7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (batcher.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (batcher.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_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 a0d06f12ab175a3cdf2afb608b3793037d9dac15..2cda5a2607bc6216238be9c7a770c6859b5936c6 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (commitm.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out index 85f02a11358797d45bae62f79680aee9644d6a65..1e6a5ab6c118c4ce10dc54dc03f2d87f50b51976 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out index 30fac1bd1803beed2af41fe59a5820e51f68416e..eb032f054ba8c67a7d159cf3fc3545b82dd642ab 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (handles.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (mainten.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (mainten.out index 4b44998e939fcd0195fc101d9bda0acd636a6346..1293fdb5eaa56d4f01900c9a2d91ab36cc17a0be 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (mainten.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (mainten.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_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 3f3297f09f7b561561154f2d1760f51ce5826923..3b68df079d26d3817fb9dd5c1ba4e16e4afbf1d1 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (message.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out index 35ebefbdf5520c31ed9ddb87d774e7692c0ecf90..2ac23582fba922482cd8f21af94078296114b2b3 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out index edbbec87a9bd34b551ad2324d2e59532e2c68833..1ffffb9aef73af4dabddccc2a8241fda3226c05d 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (node_us.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out index f2ba54a738d08c8fd16a11d9b13bdb99a4442d07..e562da72615d825d864e1274c1e7fa42281277ab 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (observe.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (observe.out index 97414af4272119d4ef60d3e2710b0e8fb959670c..da29f3207efc6c67f89c06e02d5080284bd783c7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (observe.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (observe.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (operato.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (operato.out index 4b44998e939fcd0195fc101d9bda0acd636a6346..1293fdb5eaa56d4f01900c9a2d91ab36cc17a0be 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (operato.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (operato.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_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 1a70bae79c02e1140362dcb217c3c8246572a1c0..7592e1dee9c2fdd928aac0d7bbda77c156f42962 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (robust_.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/genesis_info' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out index 2bd0cfbeacc73ee2c87352bc102c83c9336a9fac..418443a750b7d0b77d2c701667894c29fe0c161a 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out index 2f183a64c4d924d1741fbc35dc0bb968fe471310..cedb1d4716f3d154f44ae68ed43eb8422817667c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (handles_ch.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out index a6b0eafd4d8bead843756c3aa9cebaa81e297636..ef4c854ba722d886046582bddb51610a3f163824 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (stops).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_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 d03236cbf2e9631dfba03f33b1cf7e82fe791d87..9f724b6699debb875ad757416995bc373e9dc203 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 d03236cbf2e9631dfba03f33b1cf7e82fe791d87..9f724b6699debb875ad757416995bc373e9dc203 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_at_genesi.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 86fcf8aec463c13943b601802d58226beb830869..0ee22c11c02590e6cb4e1dfcd2141323cc481950 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_many_empt.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 8f980c92bd128083d8969668a9bd04e55242c0c8..93ffb0217730fea59355b9d960a2ff0973f5035f 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (inbox_proof_one_empty.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 d03236cbf2e9631dfba03f33b1cf7e82fe791d87..9f724b6699debb875ad757416995bc373e9dc203 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_0).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 d03236cbf2e9631dfba03f33b1cf7e82fe791d87..9f724b6699debb875ad757416995bc373e9dc203 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_1).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 7db3b4732c4b1e40f67e10c07b29c45cee987e1c..4d42f81f80e751310d95d0e3b36f9c39ea8835c7 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_2).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 602dfc0fe982015bedad2b54843058f49937c303..28cbbb0d152bbbf8e6f3ac34d9b720b57845974a 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_3).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 d03236cbf2e9631dfba03f33b1cf7e82fe791d87..9f724b6699debb875ad757416995bc373e9dc203 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (pvm_proof_at_genesis).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_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 d03236cbf2e9631dfba03f33b1cf7e82fe791d87..9f724b6699debb875ad757416995bc373e9dc203 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the winning strategy of refutation games (timeout).out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["3 3 +","1","1 1 x","3 7 8 + * y","2 2 out"]' from bootstrap2 to '[SC_ROLLUP_HASH]' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out index 6932914bc0f6c0b0b40789864ccb0f4508b97e32..0e8ce362192b5756f7b40665658695de362c35b4 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- originate with boot sector.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with '10 10 10 + +' --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.481 units (will add 100 for safety) -Estimated storage: 6664 bytes added (will add 20 for safety) +Estimated gas: 3110.477 units (will add 100 for safety) +Estimated storage: 6663 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000687 + Fee to the baker: ꜩ0.000686 Expected counter: 1 Gas limit: 3211 - Storage limit: 6684 bytes + Storage limit: 6683 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000687 - payload fees(the block proposer) ....... +ꜩ0.000687 + [PUBLIC_KEY_HASH] ... -ꜩ0.000686 + payload fees(the block proposer) ....... +ꜩ0.000686 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied - Consumed gas: 3110.481 - Storage size: 6664 bytes + Consumed gas: 3110.477 + Storage size: 6663 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.666 - storage fees ........................... +ꜩ1.666 + [PUBLIC_KEY_HASH] ... -ꜩ1.66575 + storage fees ........................... +ꜩ1.66575 ./tezos-client rpc get '/chains/main/blocks/head/context/sc_rollup/[SC_ROLLUP_HASH]/boot_sector' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out index 57b53fd90abbbd35141dc2e351b3af1f9511d1c0..27747b4d4a8eba344ad90ec8891c8fd447b9349e 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- origination of a SCORU executes without error.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,23 +12,23 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 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 304cad53e1c82394846c8a8189266d02febdca81..f8282658b5f09a71a5523796d70e05ff96de9c6c 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - check inbox size.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["CAFEBABE"]' from bootstrap2 to '[SC_ROLLUP_HASH]' diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out index 57536e549711dfa21ec19fea2e23c755a4eba678..3f38206e75c0646370836fe1b31accb114e1a1e8 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- pushing messages in the inbox - current messages hash.out @@ -1,8 +1,8 @@ ./tezos-client --wait none originate sc rollup from bootstrap1 of kind arith of type string booting with --burn-cap 9999999 Node is bootstrapped. -Estimated gas: 3110.433 units (will add 100 for safety) -Estimated storage: 6652 bytes added (will add 20 for safety) +Estimated gas: 3110.429 units (will add 100 for safety) +Estimated storage: 6651 bytes added (will add 20 for safety) Operation successfully injected in the node. Operation hash is '[OPERATION_HASH]' NOT waiting for the operation to be included. @@ -12,25 +12,25 @@ and/or an external block explorer to make sure that it has been included. This sequence of operations was run: Manager signed operations: From: [PUBLIC_KEY_HASH] - Fee to the baker: ꜩ0.000675 + Fee to the baker: ꜩ0.000674 Expected counter: 1 Gas limit: 3211 - Storage limit: 6672 bytes + Storage limit: 6671 bytes Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ0.000675 - payload fees(the block proposer) ....... +ꜩ0.000675 + [PUBLIC_KEY_HASH] ... -ꜩ0.000674 + payload fees(the block proposer) ....... +ꜩ0.000674 Smart contract rollup origination: Kind: arith Parameter type: string Boot sector: '' This smart contract rollup origination was successfully applied - Consumed gas: 3110.433 - Storage size: 6652 bytes + Consumed gas: 3110.429 + Storage size: 6651 bytes Address: [SC_ROLLUP_HASH] Genesis commitment hash: [SC_ROLLUP_COMMITMENT_HASH] Balance updates: - [PUBLIC_KEY_HASH] ... -ꜩ1.663 - storage fees ........................... +ꜩ1.663 + [PUBLIC_KEY_HASH] ... -ꜩ1.66275 + storage fees ........................... +ꜩ1.66275 ./tezos-client --wait none send sc rollup message 'text:["hello, message number 0", "hello, message number 1", "hello, message number 2", "hello, message number 3", "hello, message number 4"]' from bootstrap2 to '[SC_ROLLUP_HASH]'