From c80505c81012f6d4231cbc3fee280af8d4bf73ee Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Tue, 7 Jul 2026 08:13:37 +0200 Subject: [PATCH] Fix ac_acct_state tag and restore key_block mapping The previous commit accidentally removed key_block (tag 100) instead of adding ac_acct_state (tag 99). --- src/gmser_chain_objects.erl | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/gmser_chain_objects.erl b/src/gmser_chain_objects.erl index 465db2d..aa3a7ab 100644 --- a/src/gmser_chain_objects.erl +++ b/src/gmser_chain_objects.erl @@ -101,6 +101,8 @@ tag(ac_update_cops_tx) -> 95; tag(ac_rollup_tx) -> 96; tag(ac_proposal_tx) -> 97; tag(ac_receipt) -> 98; +tag(ac_acct_state) -> 99; +tag(key_block) -> 100; tag(micro_block) -> 101; tag(light_micro_block) -> 102; tag(testimony) -> 110; @@ -189,6 +191,8 @@ rev_tag(95) -> ac_update_cops_tx; rev_tag(96) -> ac_rollup_tx; rev_tag(97) -> ac_proposal_tx; rev_tag(98) -> ac_receipt; +rev_tag(99) -> ac_acct_state; +rev_tag(100) -> key_block; rev_tag(101) -> micro_block; rev_tag(102) -> light_micro_block; rev_tag(110) -> testimony;