From 6b6c0abd616f76c2daaa5413ff432bd4184cba60 Mon Sep 17 00:00:00 2001 From: Sylvain Ribstein Date: Thu, 7 Jul 2022 09:49:50 +0200 Subject: [PATCH] client/op_result: improve pp of toru/scoru op --- .../lib_client/operation_result.ml | 138 +++-- .../lib_protocol/sc_rollup_commitment_repr.ml | 6 +- .../lib_protocol/tx_rollup_commitment_repr.ml | 8 +- ...ctionality (feature_flag_is_disabled).out | 5 +- ...ctionality (rollup_node_dal_subscript.out | 5 +- .../Alpha- increase paid storage.out | 2 +- ... smart contract optimistic rollup node.out | 5 +- .../Alpha- consecutive commitments.out | 29 +- .../Alpha- ensure boot sector is used.out | 16 +- ...Alpha- get genesis info of a sc rollup.out | 5 +- ...nt hash and inbox level of a sc rollup.out | 5 +- ...ract rollup address through the client.out | 5 +- .../Alpha- list originated rollups.out | 50 +- ...ances PVM state with internal messages.out | 5 +- ... node advances PVM state with messages.out | 35 +- ...pha- node boots into the initial state.out | 5 +- ...ommitments in the rollup node (commitm.out | 95 ++-- ...ommitments in the rollup node (first_p.out | 5 +- ...ommitments in the rollup node (handles.out | 8 +- ...ommitments in the rollup node (message.out | 95 ++-- ...ommitments in the rollup node (no_comm.out | 15 +- ...ommitments in the rollup node (node_us.out | 50 +- ...ommitments in the rollup node (non_fin.out | 95 ++-- ...ce of inbox in the rollup node (basic).out | 11 +- ...f inbox in the rollup node (handles_ch.out | 17 +- ...ce of inbox in the rollup node (stops).out | 17 +- ...tegy of refutation games (inbox_proof).out | 35 +- ...efutation games (inbox_proof_at_genesi.out | 35 +- ...efutation games (inbox_proof_many_empt.out | 35 +- ...efutation games (inbox_proof_one_empty.out | 35 +- ...tegy of refutation games (pvm_proof_0).out | 35 +- ...tegy of refutation games (pvm_proof_1).out | 35 +- ...tegy of refutation games (pvm_proof_2).out | 26 +- ...tegy of refutation games (pvm_proof_3).out | 26 +- ...efutation games (pvm_proof_at_genesis).out | 35 +- ...strategy of refutation games (timeout).out | 35 +- .../Alpha- originate with boot sector.out | 5 +- ...tion of a SCORU executes without error.out | 5 +- ...ssages in the inbox - check inbox size.out | 35 +- ...s in the inbox - current messages hash.out | 11 +- ...PC (tx_rollup- regression) - rejection.out | 18 +- ...a- RPC (tx_rollup- regression) - state.out | 2 +- ..._rollups- regression) - batch encoding.out | 7 +- ...llups- regression) - commitment remove.out | 27 +- ... (tx_rollups- regression) - commitment.out | 15 +- ...- RPC (tx_rollups- regression) - inbox.out | 7 +- ...gression) - pending bonded commitments.out | 15 +- ...eration for a commitment in the future.out | 10 +- ...ize commitment operation without batch.out | 5 +- ...ommitment operation without commitment.out | 10 +- .../Alpha- Submit empty batch.out | 7 +- .../Alpha- Submit maximum size batch.out | 7 +- .../Alpha- Submit maximum size inbox.out | 502 ++++++++++++++---- ...ry to finalize a too recent commitment.out | 18 +- 54 files changed, 1288 insertions(+), 482 deletions(-) diff --git a/src/proto_alpha/lib_client/operation_result.ml b/src/proto_alpha/lib_client/operation_result.ml index 44ef0de1a805..837b41155438 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 db25d0be3bb0..b6bde1effef3 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 6de7e88e1695..9ac9323952dd 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 830efd4806e3..c43a1a2c70e2 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 a8ee78b23f3d..b142220dfcdd 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 537471a1a029..43037fc7671c 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 f901ef68e52f..860c2905cb9f 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 11fa06b1a9e3..bec715105929 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 164491fbf207..4e64676c4cf2 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 f901ef68e52f..860c2905cb9f 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 f901ef68e52f..860c2905cb9f 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 f901ef68e52f..860c2905cb9f 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 499cf9d85dd2..a1ad1e73b50f 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 d146e28fad43..55ecc652fb21 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 1d93df629d52..ebb550460466 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 a9ed48c54c7f..185d2d0abbd1 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 33e170d5978f..c44f9d448fb7 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 16b257c33290..4599635f046a 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 2968b4194bd4..6abf02a1123a 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 de98cacc0f2f..468663f33378 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 39c492356b61..a946f87b372b 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 f28d40e100e9..ee1f5c21943d 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 0a4860b1b9ed..72d35a218c4c 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 4e74fad0ace4..0e305c646d9a 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 17cddea3e292..15a9679235c4 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 70aee086aca7..e26199310c86 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 d6454802cfe8..a6ec8345443e 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 d6454802cfe8..a6ec8345443e 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 484e84b4584c..7587ace9d2ba 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 bc721adc3012..b31f8e7b25a6 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 d6454802cfe8..a6ec8345443e 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 d6454802cfe8..a6ec8345443e 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 1156e11398d2..e0b6c3e8b0e7 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 07b8795d7d4a..872ec8db2729 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 d6454802cfe8..a6ec8345443e 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 d6454802cfe8..a6ec8345443e 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 96055073a0df..f0ec6e3683d5 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 f901ef68e52f..860c2905cb9f 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 9c64db6be7bf..60dca2121293 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 cebdf413ae17..25a9c336b553 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 8f12ebff170c..f4cff3fe64a2 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 7ba1c033115a..94641023cce1 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 156faed2cce7..ea59d5c590ee 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 6cd5382ca108..1bb031ed9788 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 e4f2b7ce83ae..9cd9b885d134 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 0e6d08df9b5f..bbf4853ff2c0 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 ba4548b4cc0c..9baeed945b03 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 f476f0c14830..02affe3bd8f0 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 1a20b621c61b..1ca629ff5226 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 f476f0c14830..02affe3bd8f0 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 90f623119874..7a27e430b863 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 92c31083f208..9b17d13f6380 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 34291d243c4e..356a71f231d1 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 fa3c426e329f..067e1d5043e7 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. -- GitLab