Skip to content

Commit

Permalink
Merge pull request #47 from TransferChain/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
akdilsiz authored Apr 3, 2024
2 parents db6058d + da27b9d commit 067fc21
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client.go
Original file line number Diff line number Diff line change
Expand Up @@ -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.3"
c.version = "v1.2.4"
c.address = address
c.wsAddress = wsAddress

Expand Down
14 changes: 12 additions & 2 deletions transaction.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,12 @@ const (
TypeMultiTransfer Type = "multi_transfer"
TypeMultiTransferSent Type = "multi_transfer_sent"
TypeMultiBackup Type = "multi_backup"
PasswdData Type = "passwd_data"
TypePasswdData Type = "passwd_data"
TypePasswdRoomPolicy Type = "passwd_room_policy"
TypePasswdRoomF Type = "passwd_roomF"
TypePasswdRoomData Type = "passwd_room_data"
TypePasswdRoomDataDelete Type = "passwd_room_data_delete"
TypePasswdRoomDataPolicy Type = "passwd_room_data_policy"
)

var TypesSlice = []Type{
Expand Down Expand Up @@ -114,7 +119,12 @@ var TypesSlice = []Type{
TypeMultiTransfer,
TypeMultiTransferSent,
TypeMultiBackup,
PasswdData,
TypePasswdData,
TypePasswdRoomPolicy,
TypePasswdRoomF,
TypePasswdRoomData,
TypePasswdRoomDataDelete,
TypePasswdRoomDataPolicy,
}

// Transaction read node transaction model
Expand Down

0 comments on commit 067fc21

Please sign in to comment.