From f67abea43a99413af2f84548130bde6efa3faeba Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Mon, 25 Nov 2024 14:34:45 +0100 Subject: [PATCH] Define ac_proposal_tx --- src/aeser_chain_objects.erl | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/aeser_chain_objects.erl b/src/aeser_chain_objects.erl index 48e416e..8871a2d 100644 --- a/src/aeser_chain_objects.erl +++ b/src/aeser_chain_objects.erl @@ -104,6 +104,7 @@ tag(ac_create_tx) -> 93; tag(ac_deposit_tx) -> 94; tag(ac_update_cops_tx) -> 95; tag(ac_rollup_tx) -> 96; +tag(ac_proposal_tx) -> 97; tag(key_block) -> 100; tag(micro_block) -> 101; tag(light_micro_block) -> 102; @@ -189,6 +190,7 @@ rev_tag(93) -> ac_create_tx; rev_tag(94) -> ac_deposit_tx; rev_tag(95) -> ac_update_cops_tx; rev_tag(96) -> ac_rollup_tx; +rev_tag(97) -> ac_proposal_tx; rev_tag(100) -> key_block; rev_tag(101) -> micro_block; rev_tag(102) -> light_micro_block; -- 2.30.2