From cf934e83e6fc02a458cc3acab4f781769397983b Mon Sep 17 00:00:00 2001 From: Abdulkadir DILSIZ Date: Sat, 13 Jul 2024 14:30:05 +0300 Subject: [PATCH] Add: initial account txs tx type --- transaction.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/transaction.go b/transaction.go index 5a71c73..d29ca95 100644 --- a/transaction.go +++ b/transaction.go @@ -40,6 +40,7 @@ const ( TypeSubMaster Type = "initial_sub_storage" TypeSubAddresses Type = "interim_sub_storages" TypeAccount Type = "initial_account" + TypeAccountInitialTXS Type = "initial_account_txs" TypeMessage Type = "message" TypeMessageSent Type = "inherit_message" TypeMessageThreadDelete Type = "inherit_message_recv" @@ -88,6 +89,7 @@ var TypesSlice = []Type{ TypeSubMaster, TypeSubAddresses, TypeAccount, + TypeAccountInitialTXS, TypeMessage, TypeMessageSent, TypeMessageThreadDelete,