Skip to content

Commit

Permalink
Merge PR cosmos#981: Update IBCdata struct
Browse files Browse the repository at this point in the history
Update IBCdata struct based on recent changes made at the Cosmos Chain Registry
  • Loading branch information
JeremyParish69 authored and TxCorpi0x committed Oct 7, 2022
1 parent c956637 commit 22aa1c0
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions relayer/path.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,24 +105,24 @@ type ChannelFilter struct {
type IBCdata struct {
Schema string `json:"$schema"`
Chain1 struct {
ChainName string `json:"chain-name"`
ClientID string `json:"client-id"`
ConnectionID string `json:"connection-id"`
} `json:"chain-1"`
ChainName string `json:"chain_name"`
ClientID string `json:"client_id"`
ConnectionID string `json:"connection_id"`
} `json:"chain_1"`
Chain2 struct {
ChainName string `json:"chain-name"`
ClientID string `json:"client-id"`
ConnectionID string `json:"connection-id"`
} `json:"chain-2"`
ChainName string `json:"chain_name"`
ClientID string `json:"client_id"`
ConnectionID string `json:"connection_id"`
} `json:"chain_2"`
Channels []struct {
Chain1 struct {
ChannelID string `json:"channel-id"`
PortID string `json:"port-id"`
} `json:"chain-1"`
ChannelID string `json:"channel_id"`
PortID string `json:"port_id"`
} `json:"chain_1"`
Chain2 struct {
ChannelID string `json:"channel-id"`
PortID string `json:"port-id"`
} `json:"chain-2"`
ChannelID string `json:"channel_id"`
PortID string `json:"port_id"`
} `json:"chain_2"`
Ordering string `json:"ordering"`
Version string `json:"version"`
Tags struct {
Expand Down

0 comments on commit 22aa1c0

Please sign in to comment.