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 { type DBSession struct {
Topic Topic Topic Topic `json:"topic"`
Disconnected bool Disconnected bool `json:"disconnected"`
SessionJSON string SessionJSON string `json:"sessionJson"`
Expiry int64 Expiry int64 `json:"expiry"`
CreatedTimestamp int64 CreatedTimestamp int64 `json:"createdTimestamp"`
PairingTopic Topic PairingTopic Topic `json:"pairingTopic"`
TestChains bool TestChains bool `json:"testChains"`
DBDApp DBDApp
} }