fix(dapps)_: fix JSON marshaling for walletconnect.DBSession

Updates: #15189
This commit is contained in:
Stefan 2024-06-27 17:22:31 +03:00 committed by Stefan Dunca
parent 23aae48a40
commit db8168105d

View File

@ -8,13 +8,13 @@ import (
)
type DBSession struct {
Topic Topic
Disconnected bool
SessionJSON string
Expiry int64
CreatedTimestamp int64
PairingTopic Topic
TestChains bool
Topic Topic `json:"topic"`
Disconnected bool `json:"disconnected"`
SessionJSON string `json:"sessionJson"`
Expiry int64 `json:"expiry"`
CreatedTimestamp int64 `json:"createdTimestamp"`
PairingTopic Topic `json:"pairingTopic"`
TestChains bool `json:"testChains"`
DBDApp
}