From 3d2f5708825728b6b05f4d0230dd8364ccfaa5e2 Mon Sep 17 00:00:00 2001 From: Abdulkadir DILSIZ Date: Fri, 5 Apr 2024 13:06:04 +0300 Subject: [PATCH 1/2] Add: passwd_room tx type --- transaction.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/transaction.go b/transaction.go index 39eaac9..5a71c73 100644 --- a/transaction.go +++ b/transaction.go @@ -73,6 +73,7 @@ const ( TypeMultiTransferSent Type = "multi_transfer_sent" TypeMultiBackup Type = "multi_backup" TypePasswdData Type = "passwd_data" + TypePasswdRoom Type = "passwd_room" TypePasswdRoomPolicy Type = "passwd_room_policy" TypePasswdRoomF Type = "passwd_roomF" TypePasswdRoomData Type = "passwd_room_data" @@ -120,6 +121,7 @@ var TypesSlice = []Type{ TypeMultiTransferSent, TypeMultiBackup, TypePasswdData, + TypePasswdRoom, TypePasswdRoomPolicy, TypePasswdRoomF, TypePasswdRoomData, From c85b9eb665fb75df4d0e8b3a97f2215037fe4f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Abdulkadir=20D=C4=B0LS=C4=B0Z?= Date: Fri, 5 Apr 2024 13:07:42 +0300 Subject: [PATCH 2/2] Version bumps --- client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client.go b/client.go index 87b18e1..5434326 100644 --- a/client.go +++ b/client.go @@ -104,7 +104,7 @@ type sendMsg struct { // NewClient make ws client func NewClient(address string, wsAddress string) (Client, error) { c := new(client) - c.version = "v1.2.4" + c.version = "v1.2.5" c.address = address c.wsAddress = wsAddress