Merge branch 'uw-add-delegates-obj' into 'master'

Define channel_delegates chain obj

See merge request ioecs/aeserialization!26
This commit is contained in:
Ulf Wiger 2024-10-14 13:11:19 +00:00
commit f4999b6c2f

View File

@ -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;