diff --git a/src/proto_alpha/lib_client/operation_result.ml b/src/proto_alpha/lib_client/operation_result.ml index 44ef0de1a80582fe543fcf345b7c0d94fd6795aa..837b411554386653823c8413af77058573f091b0 100644 --- a/src/proto_alpha/lib_client/operation_result.ml +++ b/src/proto_alpha/lib_client/operation_result.ml @@ -202,7 +202,7 @@ let pp_manager_operation_content (type kind) source ppf | Increase_paid_storage {amount_in_bytes; destination} -> Format.fprintf ppf - "Increase paid storage:@,Bytes: : %a@,From: %a@,To: %a" + "Increase paid storage:@,Increased size: %a bytes@,From: %a@,To: %a" Z.pp_print amount_in_bytes Contract.pp @@ -210,11 +210,18 @@ let pp_manager_operation_content (type kind) source ppf Contract_hash.pp destination | Tx_rollup_origination -> - Format.fprintf ppf "Tx rollup origination:@,From: %a" Contract.pp source + Format.fprintf + ppf + "Transaction rollup origination:@,From: %a" + Contract.pp + source | Tx_rollup_submit_batch {tx_rollup; content; burn_limit = _} -> Format.fprintf ppf - "Tx rollup transaction:%a, %d bytes, From: %a" + "Transaction rollup transaction:@,\ + Address:%a@,\ + Message length: %d bytes@,\ + From: %a" Tx_rollup.pp tx_rollup (String.length content) @@ -223,7 +230,11 @@ let pp_manager_operation_content (type kind) source ppf | Tx_rollup_commit {tx_rollup; commitment} -> Format.fprintf ppf - "Tx rollup commitment:%a, %a@,From: %a" + "Transaction rollup commitment:@,\ + Address: %a@,\ + @[Commitment:@,\ + %a@]@,\ + From: %a" Tx_rollup.pp tx_rollup Tx_rollup_commitment.Full.pp @@ -233,7 +244,7 @@ let pp_manager_operation_content (type kind) source ppf | Tx_rollup_return_bond {tx_rollup} -> Format.fprintf ppf - "Tx rollup return commitment bond:%a @,From: %a" + "Transaction rollup recover commitment bond:@,Address: %a@,From: %a" Tx_rollup.pp tx_rollup Contract.pp @@ -241,7 +252,7 @@ let pp_manager_operation_content (type kind) source ppf | Tx_rollup_finalize_commitment {tx_rollup} -> Format.fprintf ppf - "Tx rollup finalize commitment:%a @,From: %a" + "Transaction rollup finalize commitment:@,Address: %a@,From: %a" Tx_rollup.pp tx_rollup Contract.pp @@ -249,7 +260,7 @@ let pp_manager_operation_content (type kind) source ppf | Tx_rollup_remove_commitment {tx_rollup; _} -> Format.fprintf ppf - "Tx rollup remove commitment:%a @,From: %a" + "Transaction rollup remove commitment:@,Address: %a@,From: %a" Tx_rollup.pp tx_rollup Contract.pp @@ -258,7 +269,7 @@ let pp_manager_operation_content (type kind) source ppf (* FIXME/TORU *) Format.fprintf ppf - "Tx rollup rejection:%a @,From: %a" + "Transaction rollup rejection:@,Address: %a@,From: %a" Tx_rollup.pp tx_rollup Contract.pp @@ -266,22 +277,46 @@ let pp_manager_operation_content (type kind) source ppf | Tx_rollup_dispatch_tickets {tx_rollup; _} -> Format.fprintf ppf - "Tx rollup dispatch tickets:%a@,From: %a" + "Transaction rollup dispatch tickets:@,Address: %a@,From: %a" Tx_rollup.pp tx_rollup Contract.pp source - | Transfer_ticket _ -> - Format.fprintf ppf "Transfer tickets:@,From: %a" Contract.pp source - | Dal_publish_slot_header {slot} -> - Format.fprintf ppf "@[Publish slot %a@]" Dal.Slot.pp slot + | Transfer_ticket {contents; ty; ticketer; amount; destination; entrypoint} -> + Format.fprintf + ppf + "Transfer tickets:@,\ + Ticket content: %a@,\ + Ticket content type: %a@,\ + Ticket ticketer: %a@,\ + Ticket amount: %a@,\ + Destination: %a%a@,\ + From: %a" + pp_micheline_from_lazy_expr + contents + pp_micheline_from_lazy_expr + ty + Contract.pp + ticketer + Z.pp_print + amount + Contract.pp + destination + (fun ppf entrypoint -> + if not (Entrypoint.is_default entrypoint) then + Format.fprintf ppf "@,Entrypoint: %a" Entrypoint.pp entrypoint) + entrypoint + Contract.pp + source | Sc_rollup_originate {kind; boot_sector; origination_proof = _; parameters_ty} -> let (module R : Sc_rollup.PVM.S) = Sc_rollup.Kind.pvm_of kind in Format.fprintf ppf - "Originate smart contract rollup of kind %s and type %a with boot \ - sector '%a'" + "Smart contract rollup origination:@,\ + Kind: %s@,\ + Parameter type: %a@,\ + Boot sector: '%a'" R.name pp_micheline_from_lazy_expr parameters_ty @@ -290,67 +325,73 @@ let pp_manager_operation_content (type kind) source ppf | Sc_rollup_add_messages {rollup; messages = _} -> Format.fprintf ppf - "Add a message to the inbox of the smart contract rollup at address %a" + "Smart contract rollup messages submission:@,Address: %a" Sc_rollup.Address.pp rollup | Sc_rollup_cement {rollup; commitment} -> Format.fprintf ppf - "Cement the commitment %a in the smart contract rollup at address %a" - Sc_rollup.Commitment.Hash.pp - commitment + "Smart contract rollup commitment cementing:@,\ + Address: %a@,\ + Commitment: %a" Sc_rollup.Address.pp rollup + Sc_rollup.Commitment.Hash.pp + commitment | Sc_rollup_publish {rollup; commitment} -> Format.fprintf ppf - "Publish commitment %a in the smart contract rollup at address %a" - Sc_rollup.Commitment.pp - commitment + "Smart contract rollup commitment publishing:@,\ + Address: %a@,\ + @[Commitment:@,\ + %a@]" Sc_rollup.Address.pp rollup + Sc_rollup.Commitment.pp + commitment | Sc_rollup_refute {rollup; opponent; refutation} -> Format.fprintf ppf - "Refute staker %a in the smart contract rollup at address %a using %a" - Sc_rollup.Staker.pp - opponent + "Smart contract rollup refutation move:@,\ + Address: %a@,\ + Staker: %a@,\ + Move: %a" Sc_rollup.Address.pp rollup + Sc_rollup.Staker.pp + opponent (fun fmt -> function - | None -> Format.pp_print_string fmt "opening move of the game" + | None -> Format.pp_print_string fmt "opening of the game" | Some refutation -> Sc_rollup.Game.pp_refutation fmt refutation) refutation | Sc_rollup_timeout {rollup; stakers = {alice; bob}} -> Format.fprintf ppf - "Punish one of the two stakers %a and %a by timeout in the smart \ - contract rollup at address %a" + "Smart contract rollup refutation timeout:@,\ + Address: %a@,\ + First staker (Alice): %a@,\ + Second staker (Bob): %a" + Sc_rollup.Address.pp + rollup Sc_rollup.Staker.pp alice Sc_rollup.Staker.pp bob - Sc_rollup.Address.pp - rollup - | Sc_rollup_execute_outbox_message {rollup; cemented_commitment; output_proof} - -> - (* TODO #3125 - Improve pretty-printing of this content and sc operations above. - Should avoid printing on a single line and use indentation. - *) + | Sc_rollup_execute_outbox_message + {rollup; cemented_commitment; output_proof = _} -> Format.fprintf ppf - "Execute the outbox message of the smart contract rollup at address \ - %a, with cemented commit %a and output proof %s" + "Smart contract output message execution:@,\ + Address: %a@,\ + Cemented commitment: %a" Sc_rollup.Address.pp rollup Sc_rollup.Commitment.Hash.pp cemented_commitment - output_proof | Sc_rollup_recover_bond {sc_rollup} -> Format.fprintf ppf - "Sc rollup recover commitment bond:%a @,From: %a" + "Smart contract bond retrieval:@,Address: %a@,From: %a" Sc_rollup.Address.pp sc_rollup Contract.pp @@ -358,12 +399,19 @@ let pp_manager_operation_content (type kind) source ppf | Sc_rollup_dal_slot_subscribe {rollup; slot_index} -> Format.fprintf ppf - "Register data availability slot number %a for smart contract rollup \ - address %a" + "Data availability slot subscription:@,\ + Slot number: %a@,\ + Smart contract rollup address: %a" Dal.Slot_index.pp slot_index Sc_rollup.Address.pp rollup + | Dal_publish_slot_header {slot} -> + Format.fprintf + ppf + "Data availability slot header publishing:@,Slot: %a" + Dal.Slot.pp + slot let pp_balance_updates ppf balance_updates = let open Receipt in @@ -769,8 +817,10 @@ let pp_manager_operation_contents_result ppf op_result = | Sc_rollup_execute_outbox_message_result _ -> "smart contract output message execution" | Sc_rollup_recover_bond_result _ -> "smart contract bond retrieval" - | Sc_rollup_dal_slot_subscribe_result _ -> "subscription to dal slot" - | Dal_publish_slot_header_result _ -> "slot header publishing" + | Sc_rollup_dal_slot_subscribe_result _ -> + "data availability slot subscription" + | Dal_publish_slot_header_result _ -> + "data availability slot header publishing" in let pp_manager_operation_contents_result (type kind) ppf (result : kind successful_manager_operation_result) = diff --git a/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.ml b/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.ml index db25d0be3bb063293c8bfc54cf79ac19d463dd41..b6bde1effef3de57a6cf2900ecc7990292da1687 100644 --- a/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.ml +++ b/src/proto_alpha/lib_protocol/sc_rollup_commitment_repr.ml @@ -66,8 +66,10 @@ module V1 = struct let pp fmt {compressed_state; inbox_level; predecessor; number_of_ticks} = Format.fprintf fmt - "@[SCORU Commitment:@ compressed_state: %a@ inbox_level: %a@ \ - predecessor: %a@ number_of_ticks: %ld@]" + "compressed_state: %a@,\ + inbox_level: %a@,\ + predecessor: %a@,\ + number_of_ticks: %ld" State_hash.pp compressed_state Raw_level_repr.pp diff --git a/src/proto_alpha/lib_protocol/tx_rollup_commitment_repr.ml b/src/proto_alpha/lib_protocol/tx_rollup_commitment_repr.ml index 6de7e88e16950e2d43247d7aebd28a041b4edd17..9ac9323952dd4b73e66959b36ecf864fdc8c8a40 100644 --- a/src/proto_alpha/lib_protocol/tx_rollup_commitment_repr.ml +++ b/src/proto_alpha/lib_protocol/tx_rollup_commitment_repr.ml @@ -102,12 +102,14 @@ let pp_template : fun pp_messages fmt t -> Format.fprintf fmt - "commitment %a : messages = %a predecessor %a for inbox with merkle root %a" + "Level: %a@,Messages: %a@,Predecessor: %a@,Inbox merkle root: %a" Tx_rollup_level_repr.pp t.level pp_messages t.messages - (Format.pp_print_option Hash.pp) + (Format.pp_print_option + ~none:(fun fmt () -> Format.pp_print_string fmt "None") + Hash.pp) t.predecessor Tx_rollup_inbox_repr.Merkle.pp_root t.inbox_merkle_root @@ -138,7 +140,7 @@ module Compact = struct pp_template (fun fmt {count; root; last_result_message_hash} -> Format.fprintf fmt - "count: %d, root: %a, last_result_message_hash: %a" + "Count: %d@, Merkle root hash: %a@,Last result message hash: %a" count Merkle_hash.pp root 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 830efd4806e3db0ad2a13a3a817116c5ebd955e2..c43a1a2c70e2c34ea187f704d18160d85780a8d6 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type unit with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: unit + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 a8ee78b23f3dd3503a28f0f7eca3a5130508b950..b142220dfcdde734fda7939c1292568c8064b0a1 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type unit with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: unit + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes diff --git a/tezt/tests/expected/increase_paid_storage.ml/Alpha- increase paid storage.out b/tezt/tests/expected/increase_paid_storage.ml/Alpha- increase paid storage.out index 537471a1a029d887dad8558b9b455a9747c1affa..43037fc7671cbe7eeb78f2aff3ee6083221d5f7f 100644 --- a/tezt/tests/expected/increase_paid_storage.ml/Alpha- increase paid storage.out +++ b/tezt/tests/expected/increase_paid_storage.ml/Alpha- increase paid storage.out @@ -18,7 +18,7 @@ This sequence of operations was run: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN ... -ꜩ0.000348 payload fees(the block proposer) ....... +ꜩ0.000348 Increase paid storage: - Bytes: : 1000 + Increased size: 1000 bytes From: tz1gjaF81ZRRvdzjobyfVNsAeSC6PScjfQwN To: KT1NveRFUkyV37m2kiKFFn2zsqm1wFmkp4Lk This paid storage increase was successfully applied 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 f901ef68e52f508a0f6704e666715fa5508e87fd..860c2905cb9f7d627cbb55febfe00cb8b88b93f1 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 11fa06b1a9e3afaefe55b1111cdfbdfd6ff350b8..bec715105929709b3d061c11df76838cdf484bf5 100644 --- a/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out +++ b/tezt/tests/expected/sc_rollup.ml/Alpha- consecutive commitments.out @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,11 +53,13 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000926 payload fees(the block proposer) ....... +ꜩ0.000926 - Publish commitment SCORU Commitment: - compressed_state: scs11VNjWyZw4Tgbvsom8epQbox86S2CKkE1UAZkXMM7Pj8MQMLzMf - inbox_level: 32 - predecessor: [SC_ROLLUP_COMMITMENT_HASH] - number_of_ticks: 1 in the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup commitment publishing: + Address: [SC_ROLLUP_HASH] + Commitment: + compressed_state: scs11VNjWyZw4Tgbvsom8epQbox86S2CKkE1UAZkXMM7Pj8MQMLzMf + inbox_level: 32 + predecessor: [SC_ROLLUP_COMMITMENT_HASH] + number_of_ticks: 1 This smart contract rollup commitment publishing was successfully applied Consumed gas: 5781.044 Hash of commit: [SC_ROLLUP_COMMITMENT_HASH] @@ -84,11 +89,13 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000772 payload fees(the block proposer) ....... +ꜩ0.000772 - Publish commitment SCORU Commitment: - compressed_state: scs11VNjWyZw4Tgbvsom8epQbox86S2CKkE1UAZkXMM7Pj8MQMLzMf - inbox_level: 62 - predecessor: [SC_ROLLUP_COMMITMENT_HASH] - number_of_ticks: 1 in the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup commitment publishing: + Address: [SC_ROLLUP_HASH] + Commitment: + compressed_state: scs11VNjWyZw4Tgbvsom8epQbox86S2CKkE1UAZkXMM7Pj8MQMLzMf + inbox_level: 62 + predecessor: [SC_ROLLUP_COMMITMENT_HASH] + number_of_ticks: 1 This smart contract rollup commitment publishing was successfully applied Consumed gas: 4244.872 Hash of commit: [SC_ROLLUP_COMMITMENT_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out b/tezt/tests/expected/sc_rollup.ml/Alpha- ensure boot sector is used.out index 164491fbf207b39bcd64daa0d5352a060eeaea21..4e64676c4cf2c3451ceeb4ba3b4ef021acf69e86 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000666 payload fees(the block proposer) ....... +ꜩ0.000666 - Originate smart contract rollup of kind arith and type string with boot sector '10 10 10 + +' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied Consumed gas: 2909.164 Storage size: 6628 bytes @@ -54,7 +57,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000453 payload fees(the block proposer) ....... +ꜩ0.000453 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.710 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -95,7 +99,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000656 payload fees(the block proposer) ....... +ꜩ0.000656 - Originate smart contract rollup of kind arith and type string with boot sector '31' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '31' This smart contract rollup origination was successfully applied Consumed gas: 2909.124 Storage size: 6618 bytes @@ -130,7 +137,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000453 payload fees(the block proposer) ....... +ꜩ0.000453 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.710 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out b/tezt/tests/expected/sc_rollup.ml/Alpha- get genesis info of a sc rollup.out index f901ef68e52f508a0f6704e666715fa5508e87fd..860c2905cb9f7d627cbb55febfe00cb8b88b93f1 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 f901ef68e52f508a0f6704e666715fa5508e87fd..860c2905cb9f7d627cbb55febfe00cb8b88b93f1 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 f901ef68e52f508a0f6704e666715fa5508e87fd..860c2905cb9f7d627cbb55febfe00cb8b88b93f1 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 499cf9d85dd2ba38f11752ddc089df7d9d5b73e1..a1ad1e73b50f2f2d84b32f3d61450f15f2ee4ff5 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -81,7 +87,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -112,7 +121,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -143,7 +155,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -174,7 +189,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -205,7 +223,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -236,7 +257,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -267,7 +291,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -298,7 +325,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 d146e28fad43522580e3bf93a0ea9a001dae150d..55ecc652fb213df20583b3dd402164793f7ced5b 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 1d93df629d528683553e1fc968f1292b75214314..ebb550460466b03f9376f954e6179bcfc19637bf 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -60,7 +63,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00046 payload fees(the block proposer) ....... +ꜩ0.00046 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.829 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -113,7 +117,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00046 payload fees(the block proposer) ....... +ꜩ0.00046 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.051 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -167,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000461 payload fees(the block proposer) ....... +ꜩ0.000461 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.147 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -221,7 +227,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000461 payload fees(the block proposer) ....... +ꜩ0.000461 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.275 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -276,7 +283,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000461 payload fees(the block proposer) ....... +ꜩ0.000461 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.354 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -331,7 +339,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000461 payload fees(the block proposer) ....... +ꜩ0.000461 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.354 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -386,7 +395,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000461 payload fees(the block proposer) ....... +ꜩ0.000461 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.354 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -441,7 +451,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000461 payload fees(the block proposer) ....... +ꜩ0.000461 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.482 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -497,7 +508,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000461 payload fees(the block proposer) ....... +ꜩ0.000461 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.561 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -553,7 +565,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000462 payload fees(the block proposer) ....... +ꜩ0.000462 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.578 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out b/tezt/tests/expected/sc_rollup.ml/Alpha- node boots into the initial state.out index a9ed48c54c7fa46cd0c58efd80e53ec5523b8ba1..185d2d0abbd181837a83c87ad43f3ad5379ce512 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 33e170d5978f64bc9e9109b77272fcff93c07d00..c44f9d448fb7f1132bed7e460807264d8f0b2e2c 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -54,7 +57,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -92,7 +96,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000469 payload fees(the block proposer) ....... +ꜩ0.000469 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.596 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -131,7 +136,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000481 payload fees(the block proposer) ....... +ꜩ0.000481 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.271 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -170,7 +176,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000493 payload fees(the block proposer) ....... +ꜩ0.000493 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.995 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -210,7 +217,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000505 payload fees(the block proposer) ....... +ꜩ0.000505 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.670 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -250,7 +258,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000517 payload fees(the block proposer) ....... +ꜩ0.000517 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.266 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -290,7 +299,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000529 payload fees(the block proposer) ....... +ꜩ0.000529 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.862 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -330,7 +340,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000541 payload fees(the block proposer) ....... +ꜩ0.000541 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1656.586 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -371,7 +382,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000553 payload fees(the block proposer) ....... +ꜩ0.000553 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.261 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -412,7 +424,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000565 payload fees(the block proposer) ....... +ꜩ0.000565 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.857 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -453,7 +466,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000577 payload fees(the block proposer) ....... +ꜩ0.000577 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1658.453 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -494,7 +508,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000589 payload fees(the block proposer) ....... +ꜩ0.000589 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1659.049 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -535,7 +550,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000601 payload fees(the block proposer) ....... +ꜩ0.000601 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1659.645 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -576,7 +592,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000614 payload fees(the block proposer) ....... +ꜩ0.000614 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1660.241 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -617,7 +634,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000626 payload fees(the block proposer) ....... +ꜩ0.000626 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1660.837 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -658,7 +676,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000638 payload fees(the block proposer) ....... +ꜩ0.000638 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1661.561 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -700,7 +719,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00065 payload fees(the block proposer) ....... +ꜩ0.00065 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1662.236 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -742,7 +762,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000662 payload fees(the block proposer) ....... +ꜩ0.000662 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1662.832 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -784,7 +805,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000674 payload fees(the block proposer) ....... +ꜩ0.000674 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1663.428 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -826,7 +848,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000686 payload fees(the block proposer) ....... +ꜩ0.000686 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1664.024 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -868,7 +891,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000698 payload fees(the block proposer) ....... +ꜩ0.000698 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1664.620 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -910,7 +934,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00071 payload fees(the block proposer) ....... +ꜩ0.00071 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1665.216 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -952,7 +977,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000722 payload fees(the block proposer) ....... +ꜩ0.000722 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1665.812 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -994,7 +1020,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000734 payload fees(the block proposer) ....... +ꜩ0.000734 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1666.408 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1036,7 +1063,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000746 payload fees(the block proposer) ....... +ꜩ0.000746 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1667.004 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1078,7 +1106,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000758 payload fees(the block proposer) ....... +ꜩ0.000758 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1667.600 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1120,7 +1149,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00077 payload fees(the block proposer) ....... +ꜩ0.00077 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1668.196 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1162,7 +1192,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000782 payload fees(the block proposer) ....... +ꜩ0.000782 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1668.792 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1204,7 +1235,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000794 payload fees(the block proposer) ....... +ꜩ0.000794 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1669.388 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1246,7 +1278,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000806 payload fees(the block proposer) ....... +ꜩ0.000806 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1669.984 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (first_p.out index 16b257c3329004250a54361adcbdb86b33020cfd..4599635f046af422e602a55eb4583575478a64e7 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 2968b4194bd4e7465db5d70174845f319ff24184..6abf02a1123a9b53cb2659e91e614ab6c696e8e0 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -54,7 +57,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [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 de98cacc0f2f06006b0fb48710620ef6ca69f4f3..468663f3337835a546370e139b4ef9209b4a193d 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -54,7 +57,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -92,7 +96,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000469 payload fees(the block proposer) ....... +ꜩ0.000469 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.596 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -131,7 +136,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000481 payload fees(the block proposer) ....... +ꜩ0.000481 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.271 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -170,7 +176,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000493 payload fees(the block proposer) ....... +ꜩ0.000493 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.995 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -210,7 +217,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000505 payload fees(the block proposer) ....... +ꜩ0.000505 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.670 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -250,7 +258,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000517 payload fees(the block proposer) ....... +ꜩ0.000517 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.266 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -290,7 +299,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000529 payload fees(the block proposer) ....... +ꜩ0.000529 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.862 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -330,7 +340,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000541 payload fees(the block proposer) ....... +ꜩ0.000541 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1656.586 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -371,7 +382,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000553 payload fees(the block proposer) ....... +ꜩ0.000553 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.261 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -412,7 +424,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000565 payload fees(the block proposer) ....... +ꜩ0.000565 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.857 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -453,7 +466,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000577 payload fees(the block proposer) ....... +ꜩ0.000577 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1658.453 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -494,7 +508,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000589 payload fees(the block proposer) ....... +ꜩ0.000589 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1659.049 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -535,7 +550,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000601 payload fees(the block proposer) ....... +ꜩ0.000601 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1659.645 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -576,7 +592,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000614 payload fees(the block proposer) ....... +ꜩ0.000614 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1660.241 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -617,7 +634,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000626 payload fees(the block proposer) ....... +ꜩ0.000626 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1660.837 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -658,7 +676,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000638 payload fees(the block proposer) ....... +ꜩ0.000638 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1661.561 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -700,7 +719,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00065 payload fees(the block proposer) ....... +ꜩ0.00065 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1662.236 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -742,7 +762,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000662 payload fees(the block proposer) ....... +ꜩ0.000662 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1662.832 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -784,7 +805,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000674 payload fees(the block proposer) ....... +ꜩ0.000674 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1663.428 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -826,7 +848,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000686 payload fees(the block proposer) ....... +ꜩ0.000686 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1664.024 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -868,7 +891,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000698 payload fees(the block proposer) ....... +ꜩ0.000698 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1664.620 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -910,7 +934,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00071 payload fees(the block proposer) ....... +ꜩ0.00071 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1665.216 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -952,7 +977,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000722 payload fees(the block proposer) ....... +ꜩ0.000722 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1665.812 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -994,7 +1020,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000734 payload fees(the block proposer) ....... +ꜩ0.000734 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1666.408 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1036,7 +1063,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000746 payload fees(the block proposer) ....... +ꜩ0.000746 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1667.004 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1078,7 +1106,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000758 payload fees(the block proposer) ....... +ꜩ0.000758 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1667.600 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1120,7 +1149,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00077 payload fees(the block proposer) ....... +ꜩ0.00077 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1668.196 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1162,7 +1192,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000782 payload fees(the block proposer) ....... +ꜩ0.000782 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1668.792 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1204,7 +1235,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000794 payload fees(the block proposer) ....... +ꜩ0.000794 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1669.388 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1246,7 +1278,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000806 payload fees(the block proposer) ....... +ꜩ0.000806 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1669.984 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (no_comm.out index 39c492356b61896246060be4a2ab68beda3e5c83..a946f87b372bc0557bd80b2bc09b02435999b8ed 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -125,7 +128,8 @@ This simulation failed: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ1 payload fees(the block proposer) ....... +ꜩ1 - Sc rollup recover commitment bond:[SC_ROLLUP_HASH] + Smart contract bond retrieval: + Address: [SC_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This operation FAILED. @@ -152,7 +156,9 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00067 payload fees(the block proposer) ....... +ꜩ0.00067 - Cement the commitment [SC_ROLLUP_COMMITMENT_HASH] in the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup commitment cementing: + Address: [SC_ROLLUP_HASH] + Commitment: [SC_ROLLUP_COMMITMENT_HASH] This smart contract rollup commitment cementing was successfully applied Consumed gas: 3625.362 @@ -237,7 +243,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ1 payload fees(the block proposer) ....... +ꜩ1 - Sc rollup recover commitment bond:[SC_ROLLUP_HASH] + Smart contract bond retrieval: + Address: [SC_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This smart contract bond retrieval was successfully applied Balance updates: 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 f28d40e100e99d2fe5fa5ca08559baa99438be50..ee1f5c21943d7cf75bf7c97a60d2c52b2e170b3f 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -54,7 +57,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -92,7 +96,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000469 payload fees(the block proposer) ....... +ꜩ0.000469 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.596 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -131,7 +136,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000481 payload fees(the block proposer) ....... +ꜩ0.000481 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.271 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -170,7 +176,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000493 payload fees(the block proposer) ....... +ꜩ0.000493 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.995 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -210,7 +217,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000505 payload fees(the block proposer) ....... +ꜩ0.000505 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.670 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -250,7 +258,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000517 payload fees(the block proposer) ....... +ꜩ0.000517 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.266 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -290,7 +299,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000529 payload fees(the block proposer) ....... +ꜩ0.000529 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.862 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -330,7 +340,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000541 payload fees(the block proposer) ....... +ꜩ0.000541 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1656.586 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -371,7 +382,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000553 payload fees(the block proposer) ....... +ꜩ0.000553 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.261 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -412,7 +424,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000565 payload fees(the block proposer) ....... +ꜩ0.000565 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.857 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -453,7 +466,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000577 payload fees(the block proposer) ....... +ꜩ0.000577 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1658.453 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -494,7 +508,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000589 payload fees(the block proposer) ....... +ꜩ0.000589 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1659.049 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -535,7 +550,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000601 payload fees(the block proposer) ....... +ꜩ0.000601 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1659.645 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -576,7 +592,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000614 payload fees(the block proposer) ....... +ꜩ0.000614 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1660.241 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -617,7 +634,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000626 payload fees(the block proposer) ....... +ꜩ0.000626 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1660.837 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct handling of commitments in the rollup node (non_fin.out index 0a4860b1b9edda1b9b2928c07a2ce62008087476..72d35a218c4cf204692394fd7defb17b9cd3b12c 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -54,7 +57,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -92,7 +96,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000469 payload fees(the block proposer) ....... +ꜩ0.000469 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.596 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -131,7 +136,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000481 payload fees(the block proposer) ....... +ꜩ0.000481 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.271 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -170,7 +176,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000493 payload fees(the block proposer) ....... +ꜩ0.000493 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.995 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -210,7 +217,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000505 payload fees(the block proposer) ....... +ꜩ0.000505 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.670 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -250,7 +258,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000517 payload fees(the block proposer) ....... +ꜩ0.000517 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.266 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -290,7 +299,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000529 payload fees(the block proposer) ....... +ꜩ0.000529 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.862 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -330,7 +340,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000541 payload fees(the block proposer) ....... +ꜩ0.000541 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1656.586 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -371,7 +382,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000553 payload fees(the block proposer) ....... +ꜩ0.000553 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.261 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -412,7 +424,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000565 payload fees(the block proposer) ....... +ꜩ0.000565 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.857 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -453,7 +466,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000577 payload fees(the block proposer) ....... +ꜩ0.000577 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1658.453 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -494,7 +508,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000589 payload fees(the block proposer) ....... +ꜩ0.000589 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1659.049 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -535,7 +550,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000601 payload fees(the block proposer) ....... +ꜩ0.000601 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1659.645 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -576,7 +592,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000614 payload fees(the block proposer) ....... +ꜩ0.000614 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1660.241 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -617,7 +634,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000626 payload fees(the block proposer) ....... +ꜩ0.000626 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1660.837 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -658,7 +676,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000638 payload fees(the block proposer) ....... +ꜩ0.000638 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1661.561 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -700,7 +719,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00065 payload fees(the block proposer) ....... +ꜩ0.00065 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1662.236 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -742,7 +762,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000662 payload fees(the block proposer) ....... +ꜩ0.000662 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1662.832 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -784,7 +805,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000674 payload fees(the block proposer) ....... +ꜩ0.000674 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1663.428 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -826,7 +848,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000686 payload fees(the block proposer) ....... +ꜩ0.000686 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1664.024 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -868,7 +891,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000698 payload fees(the block proposer) ....... +ꜩ0.000698 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1664.620 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -910,7 +934,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00071 payload fees(the block proposer) ....... +ꜩ0.00071 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1665.216 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -952,7 +977,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000722 payload fees(the block proposer) ....... +ꜩ0.000722 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1665.812 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -994,7 +1020,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000734 payload fees(the block proposer) ....... +ꜩ0.000734 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1666.408 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1036,7 +1063,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000746 payload fees(the block proposer) ....... +ꜩ0.000746 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1667.004 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1078,7 +1106,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000758 payload fees(the block proposer) ....... +ꜩ0.000758 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1667.600 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1120,7 +1149,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00077 payload fees(the block proposer) ....... +ꜩ0.00077 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1668.196 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1162,7 +1192,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000782 payload fees(the block proposer) ....... +ꜩ0.000782 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1668.792 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1204,7 +1235,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000794 payload fees(the block proposer) ....... +ꜩ0.000794 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1669.388 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -1246,7 +1278,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000806 payload fees(the block proposer) ....... +ꜩ0.000806 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1669.984 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] diff --git a/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out b/tezt/tests/expected/sc_rollup.ml/Alpha- observing the correct maintenance of inbox in the rollup node (basic).out index 4e74fad0ace4115a757c6a41af26bb3350a868f5..0e305c646d9a142d1edce88e5352179a0e7347a0 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000469 payload fees(the block proposer) ....... +ꜩ0.000469 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.596 Resulting inbox state: { rollup = [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 17cddea3e292b85d211053da341c85732cb8be49..15a9679235c4e74d0ba350bf1fc8d3a4b0f2db6d 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.079 Resulting inbox state: { rollup = [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 70aee086aca7a93fbd7085464edc7c7921449762..e26199310c865569c2cd70bba1f2e3bae4709bb2 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000469 payload fees(the block proposer) ....... +ꜩ0.000469 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.596 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.079 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000469 payload fees(the block proposer) ....... +ꜩ0.000469 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.803 Resulting inbox state: { rollup = [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 d6454802cfe89f66403d06f96d364c25c6f749c9..a6ec8345443e6b983b296768667521ff175f32f8 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.197 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.276 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.483 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.626 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.690 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [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 d6454802cfe89f66403d06f96d364c25c6f749c9..a6ec8345443e6b983b296768667521ff175f32f8 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.197 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.276 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.483 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.626 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.690 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [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 484e84b4584cbd8b4155c6b4440a3e11a9b6610d..7587ace9d2bac75ce40a404ca943c39eed36eaa3 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.227 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.291 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.434 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.641 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [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 bc721adc30122e10bebd517842e3cc68855a22c2..b31f8e7b25a64c27abd3df3316325fd61d0fe54d 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.212 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.291 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.626 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [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 d6454802cfe89f66403d06f96d364c25c6f749c9..a6ec8345443e6b983b296768667521ff175f32f8 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.197 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.276 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.483 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.626 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.690 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [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 d6454802cfe89f66403d06f96d364c25c6f749c9..a6ec8345443e6b983b296768667521ff175f32f8 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.197 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.276 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.483 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.626 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.690 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [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 1156e11398d29bfbed06f597503e34e7091c2b6f..e0b6c3e8b0e7df476856864de3a44b10fc5db75b 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.197 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.276 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.483 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [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 07b8795d7d4adba48b2611914ed694e756759ec5..872ec8db2729d812af58e570677cc5fa692708d7 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.197 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.276 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [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 d6454802cfe89f66403d06f96d364c25c6f749c9..a6ec8345443e6b983b296768667521ff175f32f8 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.197 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.276 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.483 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.626 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.690 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [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 d6454802cfe89f66403d06f96d364c25c6f749c9..a6ec8345443e6b983b296768667521ff175f32f8 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.975 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.197 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.276 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.419 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.483 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.498 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.626 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.690 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000494 payload fees(the block proposer) ....... +ꜩ0.000494 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.705 Resulting inbox state: { rollup = [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 96055073a0df914074c0b1a6f482d2381dac33d2..f0ec6e3683d52fd356862ec7faa7aac380bfd848 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000666 payload fees(the block proposer) ....... +ꜩ0.000666 - Originate smart contract rollup of kind arith and type string with boot sector '10 10 10 + +' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '10 10 10 + +' This smart contract rollup origination was successfully applied Consumed gas: 2909.164 Storage size: 6628 bytes 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 f901ef68e52f508a0f6704e666715fa5508e87fd..860c2905cb9f7d627cbb55febfe00cb8b88b93f1 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes 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 9c64db6be7bf93da73f74319bbc1ac6d0604aafd..60dca21212937ffff8a2142039b0efad3b32c4a1 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000457 payload fees(the block proposer) ....... +ꜩ0.000457 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1651.778 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000469 payload fees(the block proposer) ....... +ꜩ0.000469 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1652.596 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -127,7 +132,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000481 payload fees(the block proposer) ....... +ꜩ0.000481 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.271 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -166,7 +172,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000493 payload fees(the block proposer) ....... +ꜩ0.000493 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1653.995 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -206,7 +213,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000505 payload fees(the block proposer) ....... +ꜩ0.000505 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1654.670 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -246,7 +254,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000517 payload fees(the block proposer) ....... +ꜩ0.000517 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.266 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -286,7 +295,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000529 payload fees(the block proposer) ....... +ꜩ0.000529 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.862 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -326,7 +336,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000541 payload fees(the block proposer) ....... +ꜩ0.000541 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1656.586 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -367,7 +378,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000553 payload fees(the block proposer) ....... +ꜩ0.000553 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.261 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -408,7 +420,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000565 payload fees(the block proposer) ....... +ꜩ0.000565 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1657.857 Resulting inbox state: { rollup = [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 cebdf413ae176242278cd9365b94c273f512278a..25a9c336b5533611f5a249afcc30e73a7dc3fb11 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 @@ -19,7 +19,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000654 payload fees(the block proposer) ....... +ꜩ0.000654 - Originate smart contract rollup of kind arith and type string with boot sector '' + Smart contract rollup origination: + Kind: arith + Parameter type: string + Boot sector: '' This smart contract rollup origination was successfully applied Consumed gas: 2909.116 Storage size: 6616 bytes @@ -50,7 +53,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00058 payload fees(the block proposer) ....... +ꜩ0.00058 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1655.437 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] @@ -88,7 +92,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000608 payload fees(the block proposer) ....... +ꜩ0.000608 - Add a message to the inbox of the smart contract rollup at address [SC_ROLLUP_HASH] + Smart contract rollup messages submission: + Address: [SC_ROLLUP_HASH] This smart contract rollup messages submission was successfully applied Consumed gas: 1656.527 Resulting inbox state: { rollup = [SC_ROLLUP_HASH] diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollup- regression) - rejection.out b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollup- regression) - rejection.out index 8f12ebff170c312d529ffc066c06a825111884ca..f4cff3fe64a2879bf63955bafc618dcdb3cfb3d6 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollup- regression) - rejection.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollup- regression) - rejection.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005721 payload fees(the block proposer) ....... +ꜩ0.005721 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -74,7 +77,13 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000697 payload fees(the block proposer) ....... +ꜩ0.000697 - Tx rollup commitment:[TX_ROLLUP_HASH], commitment 0 : messages = [TX_ROLLUP_MESSAGE_RESULT_HASH] predecessor for inbox with merkle root [TX_ROLLUP_INBOX_HASH] + Transaction rollup commitment: + Address: [TX_ROLLUP_HASH] + Commitment: + Level: 0 + Messages: [TX_ROLLUP_MESSAGE_RESULT_HASH] + Predecessor: None + Inbox merkle root: [TX_ROLLUP_INBOX_HASH] From: [PUBLIC_KEY_HASH] This transaction rollup commitment was successfully applied Balance updates: @@ -110,7 +119,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.01072 payload fees(the block proposer) ....... +ꜩ0.01072 - Tx rollup rejection:[TX_ROLLUP_HASH] + Transaction rollup rejection: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This transaction rollup commitment rejection was successfully applied Balance updates: diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollup- regression) - state.out b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollup- regression) - state.out index 7ba1c033115a7e8ed8a4fbda02795100468f13e8..94641023cce1b2198ae5cd8033b66814cadc4f5b 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollup- regression) - state.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollup- regression) - state.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - batch encoding.out b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - batch encoding.out index 156faed2cce7c50bb7342207e5cbf4624c177a93..ea59d5c590eee93005c3dd211eae611f83c83147 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - batch encoding.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - batch encoding.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000739 payload fees(the block proposer) ....... +ꜩ0.000739 - Tx rollup transaction:[TX_ROLLUP_HASH], 256 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 256 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2232.850 diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - commitment remove.out b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - commitment remove.out index 6cd5382ca1081b79857d9fb0d8b8d032ff754822..1bb031ed9788a2d9f983864ff15927c298b2b85a 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - commitment remove.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - commitment remove.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000474 payload fees(the block proposer) ....... +ꜩ0.000474 - Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 4 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2108.283 @@ -74,7 +77,13 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000697 payload fees(the block proposer) ....... +ꜩ0.000697 - Tx rollup commitment:[TX_ROLLUP_HASH], commitment 0 : messages = [TX_ROLLUP_MESSAGE_RESULT_HASH] predecessor for inbox with merkle root [TX_ROLLUP_INBOX_HASH] + Transaction rollup commitment: + Address: [TX_ROLLUP_HASH] + Commitment: + Level: 0 + Messages: [TX_ROLLUP_MESSAGE_RESULT_HASH] + Predecessor: None + Inbox merkle root: [TX_ROLLUP_INBOX_HASH] From: [PUBLIC_KEY_HASH] This transaction rollup commitment was successfully applied Balance updates: @@ -116,7 +125,8 @@ This simulation failed: Expected counter: 4 Gas limit: 1040000 Storage limit: 60000 bytes - Tx rollup finalize commitment:[TX_ROLLUP_HASH] + Transaction rollup finalize commitment: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This operation FAILED. @@ -144,7 +154,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000505 payload fees(the block proposer) ....... +ꜩ0.000505 - Tx rollup finalize commitment:[TX_ROLLUP_HASH] + Transaction rollup finalize commitment: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This transaction rollup commitment finalization was successfully applied Consumed gas: 2501.420@finalized level: @@ -160,7 +171,8 @@ This simulation failed: Expected counter: 1 Gas limit: 1040000 Storage limit: 60000 bytes - Tx rollup remove commitment:[TX_ROLLUP_HASH] + Transaction rollup remove commitment: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This operation FAILED. @@ -200,7 +212,8 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000572 payload fees(the block proposer) ....... +ꜩ0.000572 - Tx rollup remove commitment:[TX_ROLLUP_HASH] + Transaction rollup remove commitment: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This transaction rollup commitment removal was successfully applied Consumed gas: 3171.024@finalized level: diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - commitment.out b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - commitment.out index e4f2b7ce83ae11567b031142ebe3d8fb864f4013..9cd9b885d134255fdf98841516bfca12fa15870f 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - commitment.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - commitment.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000474 payload fees(the block proposer) ....... +ꜩ0.000474 - Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 4 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2108.283 @@ -74,7 +77,13 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000697 payload fees(the block proposer) ....... +ꜩ0.000697 - Tx rollup commitment:[TX_ROLLUP_HASH], commitment 0 : messages = [TX_ROLLUP_MESSAGE_RESULT_HASH] predecessor for inbox with merkle root [TX_ROLLUP_INBOX_HASH] + Transaction rollup commitment: + Address: [TX_ROLLUP_HASH] + Commitment: + Level: 0 + Messages: [TX_ROLLUP_MESSAGE_RESULT_HASH] + Predecessor: None + Inbox merkle root: [TX_ROLLUP_INBOX_HASH] From: [PUBLIC_KEY_HASH] This transaction rollup commitment was successfully applied Balance updates: diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - inbox.out b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - inbox.out index 0e6d08df9b5f87a97a18bfac28c6ad6e9e1f2121..bbf4853ff2c097812334de9b3f4a3998c0d1762f 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - inbox.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - inbox.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000474 payload fees(the block proposer) ....... +ꜩ0.000474 - Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 4 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2108.283 diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - pending bonded commitments.out b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - pending bonded commitments.out index ba4548b4cc0c7bb389bbbeb9ede1294aaf1b53bb..9baeed945b037053ca63e1d96a9e031a4c0cba3a 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - pending bonded commitments.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- RPC (tx_rollups- regression) - pending bonded commitments.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000474 payload fees(the block proposer) ....... +ꜩ0.000474 - Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 4 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2108.283 @@ -74,7 +77,13 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000697 payload fees(the block proposer) ....... +ꜩ0.000697 - Tx rollup commitment:[TX_ROLLUP_HASH], commitment 0 : messages = [TX_ROLLUP_MESSAGE_RESULT_HASH] predecessor for inbox with merkle root [TX_ROLLUP_INBOX_HASH] + Transaction rollup commitment: + Address: [TX_ROLLUP_HASH] + Commitment: + Level: 0 + Messages: [TX_ROLLUP_MESSAGE_RESULT_HASH] + Predecessor: None + Inbox merkle root: [TX_ROLLUP_INBOX_HASH] From: [PUBLIC_KEY_HASH] This transaction rollup commitment was successfully applied Balance updates: diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation for a commitment in the future.out b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation for a commitment in the future.out index f476f0c1483069e9ee96e968ee01b877c3a34481..02affe3bd8f04f53f46010a5add12ad10f0dd69b 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation for a commitment in the future.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation for a commitment in the future.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000474 payload fees(the block proposer) ....... +ꜩ0.000474 - Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 4 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2108.283 @@ -63,7 +66,8 @@ This simulation failed: Expected counter: 3 Gas limit: 1040000 Storage limit: 60000 bytes - Tx rollup finalize commitment:[TX_ROLLUP_HASH] + Transaction rollup finalize commitment: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This operation FAILED. diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation without batch.out b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation without batch.out index 1a20b621c61b39d2087e1c75daf43be2cadd5e83..1ca629ff52269d8bf4e7642d9f58f4cd0fdee4e9 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation without batch.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation without batch.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -38,7 +38,8 @@ This simulation failed: Expected counter: 2 Gas limit: 1040000 Storage limit: 60000 bytes - Tx rollup finalize commitment:[TX_ROLLUP_HASH] + Transaction rollup finalize commitment: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This operation FAILED. diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation without commitment.out b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation without commitment.out index f476f0c1483069e9ee96e968ee01b877c3a34481..02affe3bd8f04f53f46010a5add12ad10f0dd69b 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation without commitment.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit a finalize commitment operation without commitment.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000474 payload fees(the block proposer) ....... +ꜩ0.000474 - Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 4 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2108.283 @@ -63,7 +66,8 @@ This simulation failed: Expected counter: 3 Gas limit: 1040000 Storage limit: 60000 bytes - Tx rollup finalize commitment:[TX_ROLLUP_HASH] + Transaction rollup finalize commitment: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This operation FAILED. diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit empty batch.out b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit empty batch.out index 90f623119874b75c1973aff496f40412a560349f..7a27e430b863c8820cbe32739aad14f306a15d73 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit empty batch.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit empty batch.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.00047 payload fees(the block proposer) ....... +ꜩ0.00047 - Tx rollup transaction:[TX_ROLLUP_HASH], 0 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 0 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2104.274 diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit maximum size batch.out b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit maximum size batch.out index 92c31083f2080453db0e42d57a2b7752c4e385d0..9b17d13f6380484c74fd71145ec9b015adcef8df 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit maximum size batch.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit maximum size batch.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005721 payload fees(the block proposer) ....... +ꜩ0.005721 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit maximum size inbox.out b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit maximum size inbox.out index 34291d243c4e63a3339966f1f7f2a7e72d281f29..356a71f231d15e56dbf29b561b72ee345a588a5d 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- Submit maximum size inbox.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- Submit maximum size inbox.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005721 payload fees(the block proposer) ....... +ꜩ0.005721 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -74,7 +77,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005721 payload fees(the block proposer) ....... +ꜩ0.005721 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -99,7 +105,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005721 payload fees(the block proposer) ....... +ꜩ0.005721 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -124,7 +133,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005721 payload fees(the block proposer) ....... +ꜩ0.005721 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -149,7 +161,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005721 payload fees(the block proposer) ....... +ꜩ0.005721 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -189,7 +204,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -229,7 +247,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -269,7 +290,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -309,7 +333,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -349,7 +376,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -389,7 +419,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -429,7 +462,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -469,7 +505,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -509,7 +548,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -549,7 +591,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -589,7 +634,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -629,7 +677,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -669,7 +720,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -709,7 +763,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -749,7 +806,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -789,7 +849,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -829,7 +892,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -869,7 +935,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -909,7 +978,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -949,7 +1021,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -989,7 +1064,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1029,7 +1107,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1069,7 +1150,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1109,7 +1193,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1149,7 +1236,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1189,7 +1279,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1229,7 +1322,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1269,7 +1365,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1309,7 +1408,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1349,7 +1451,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1389,7 +1494,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1429,7 +1537,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1469,7 +1580,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1509,7 +1623,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1549,7 +1666,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1589,7 +1709,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1629,7 +1752,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1669,7 +1795,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1709,7 +1838,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1749,7 +1881,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1789,7 +1924,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1829,7 +1967,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1869,7 +2010,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1909,7 +2053,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1949,7 +2096,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -1989,7 +2139,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2029,7 +2182,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2069,7 +2225,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2109,7 +2268,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2149,7 +2311,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2189,7 +2354,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2229,7 +2397,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2269,7 +2440,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2309,7 +2483,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2349,7 +2526,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2389,7 +2569,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2429,7 +2612,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2469,7 +2655,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2509,7 +2698,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2549,7 +2741,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2589,7 +2784,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2629,7 +2827,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2669,7 +2870,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2709,7 +2913,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2749,7 +2956,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2789,7 +2999,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2829,7 +3042,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2869,7 +3085,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2909,7 +3128,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2949,7 +3171,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -2989,7 +3214,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3029,7 +3257,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3069,7 +3300,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3109,7 +3343,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3149,7 +3386,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3189,7 +3429,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3229,7 +3472,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3269,7 +3515,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3309,7 +3558,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3349,7 +3601,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3389,7 +3644,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3429,7 +3687,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3469,7 +3730,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3509,7 +3773,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3549,7 +3816,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3589,7 +3859,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3629,7 +3902,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3669,7 +3945,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3709,7 +3988,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3749,7 +4031,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3789,7 +4074,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3829,7 +4117,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3869,7 +4160,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3909,7 +4203,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 @@ -3949,7 +4246,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.005625 payload fees(the block proposer) ....... +ꜩ0.005625 - Tx rollup transaction:[TX_ROLLUP_HASH], 5000 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 5000 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 4615.524 diff --git a/tezt/tests/expected/tx_rollup.ml/Alpha- Try to finalize a too recent commitment.out b/tezt/tests/expected/tx_rollup.ml/Alpha- Try to finalize a too recent commitment.out index fa3c426e329f9f1f9f3eb375c0fb5d3fd727f6d4..067e1d5043e7a848815e6368bee4e44bed37e7ca 100644 --- a/tezt/tests/expected/tx_rollup.ml/Alpha- Try to finalize a too recent commitment.out +++ b/tezt/tests/expected/tx_rollup.ml/Alpha- Try to finalize a too recent commitment.out @@ -18,7 +18,7 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000379 payload fees(the block proposer) ....... +ꜩ0.000379 - Tx rollup origination: + Transaction rollup origination: From: [PUBLIC_KEY_HASH] This transaction rollup origination was successfully applied Balance updates: @@ -49,7 +49,10 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000474 payload fees(the block proposer) ....... +ꜩ0.000474 - Tx rollup transaction:[TX_ROLLUP_HASH], 4 bytes, From: [PUBLIC_KEY_HASH] + Transaction rollup transaction: + Address:[TX_ROLLUP_HASH] + Message length: 4 bytes + From: [PUBLIC_KEY_HASH] This transaction rollup batch submission was successfully applied Consumed gas: 2108.283 @@ -74,7 +77,13 @@ This sequence of operations was run: Balance updates: [PUBLIC_KEY_HASH] ... -ꜩ0.000697 payload fees(the block proposer) ....... +ꜩ0.000697 - Tx rollup commitment:[TX_ROLLUP_HASH], commitment 0 : messages = [TX_ROLLUP_MESSAGE_RESULT_HASH] predecessor for inbox with merkle root [TX_ROLLUP_INBOX_HASH] + Transaction rollup commitment: + Address: [TX_ROLLUP_HASH] + Commitment: + Level: 0 + Messages: [TX_ROLLUP_MESSAGE_RESULT_HASH] + Predecessor: None + Inbox merkle root: [TX_ROLLUP_INBOX_HASH] From: [PUBLIC_KEY_HASH] This transaction rollup commitment was successfully applied Balance updates: @@ -92,7 +101,8 @@ This simulation failed: Expected counter: 4 Gas limit: 1040000 Storage limit: 60000 bytes - Tx rollup finalize commitment:[TX_ROLLUP_HASH] + Transaction rollup finalize commitment: + Address: [TX_ROLLUP_HASH] From: [PUBLIC_KEY_HASH] This operation FAILED.