From b5929e4d2e5e45317acd4bcf2a56d4a31f62f4b4 Mon Sep 17 00:00:00 2001 From: Ulf Wiger Date: Mon, 14 Oct 2024 14:48:05 +0200 Subject: [PATCH] Define channel_delegates chain obj --- 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 db49bef..c974124 100644 --- a/src/aeser_chain_objects.erl +++ b/src/aeser_chain_objects.erl @@ -60,6 +60,7 @@ tag(contract_create_tx) -> 42; tag(contract_call_tx) -> 43; tag(channel_create_tx) -> 50; tag(channel_set_delegates_tx) -> 501; +tag(channel_delegates) -> 502; tag(channel_deposit_tx) -> 51; tag(channel_withdraw_tx) -> 52; tag(channel_force_progress_tx) -> 521; @@ -143,6 +144,7 @@ rev_tag(42) -> contract_create_tx; rev_tag(43) -> contract_call_tx; rev_tag(50) -> channel_create_tx; rev_tag(501) -> channel_set_delegates_tx; +rev_tag(502) -> channel_delegates; rev_tag(51) -> channel_deposit_tx; rev_tag(52) -> channel_withdraw_tx; rev_tag(521) -> channel_force_progress_tx; -- 2.30.2