Fix ac_acct_state tag and restore key_block mapping
Gajumaru Serialization Tests / tests (push) Successful in 11s

The previous commit accidentally removed key_block (tag 100) instead of
adding ac_acct_state (tag 99).
This commit is contained in:
Ulf Wiger
2026-07-07 08:13:37 +02:00
parent 0e157f824a
commit c80505c810
+4
View File
@@ -101,6 +101,8 @@ tag(ac_update_cops_tx) -> 95;
tag(ac_rollup_tx) -> 96; tag(ac_rollup_tx) -> 96;
tag(ac_proposal_tx) -> 97; tag(ac_proposal_tx) -> 97;
tag(ac_receipt) -> 98; tag(ac_receipt) -> 98;
tag(ac_acct_state) -> 99;
tag(key_block) -> 100;
tag(micro_block) -> 101; tag(micro_block) -> 101;
tag(light_micro_block) -> 102; tag(light_micro_block) -> 102;
tag(testimony) -> 110; tag(testimony) -> 110;
@@ -189,6 +191,8 @@ rev_tag(95) -> ac_update_cops_tx;
rev_tag(96) -> ac_rollup_tx; rev_tag(96) -> ac_rollup_tx;
rev_tag(97) -> ac_proposal_tx; rev_tag(97) -> ac_proposal_tx;
rev_tag(98) -> ac_receipt; rev_tag(98) -> ac_receipt;
rev_tag(99) -> ac_acct_state;
rev_tag(100) -> key_block;
rev_tag(101) -> micro_block; rev_tag(101) -> micro_block;
rev_tag(102) -> light_micro_block; rev_tag(102) -> light_micro_block;
rev_tag(110) -> testimony; rev_tag(110) -> testimony;