Add data_extend_tx

This commit is contained in:
Hans Svensson 2024-09-24 09:47:10 +02:00
parent 7457d027fd
commit 9cb67eeb98

View File

@ -39,6 +39,7 @@ deserialize(Type, Vsn, Template, Binary) ->
tag(account) -> 10;
tag(signed_tx) -> 11;
tag(spend_tx) -> 12;
tag(data_extend_tx) -> 13;
tag(oracle) -> 20;
tag(oracle_query) -> 21;
tag(oracle_register_tx) -> 22;
@ -121,6 +122,7 @@ tag(pof) -> 200.
rev_tag(10) -> account;
rev_tag(11) -> signed_tx;
rev_tag(12) -> spend_tx;
rev_tag(13) -> data_extend_tx;
rev_tag(20) -> oracle;
rev_tag(21) -> oracle_query;
rev_tag(22) -> oracle_register_tx;