Skip to content

Commit

Permalink
attempt fix json export tag
Browse files Browse the repository at this point in the history
  • Loading branch information
jhweintraub committed Dec 19, 2024
1 parent fe5d947 commit a0bfff7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deployment/ccip/view/v1_6/rmnremote.go
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ type RMNRemoteView struct {
type RMNRemoteVersionedConfig struct {
Version uint32 `json:"version"`
Signers []RMNRemoteSigner `json:"signers"`
fSign uint64 `json:"fSign"`
Fsign uint64 `json:"fSign"`
}

type RMNRemoteSigner struct {
Expand All @@ -34,7 +34,7 @@ func GenerateRMNRemoteView(rmnReader *rmn_remote.RMNRemote) (RMNRemoteView, erro
rmnConfig := RMNRemoteVersionedConfig{
Version: config.Version,
Signers: make([]RMNRemoteSigner, 0, len(config.Config.Signers)),
fSign: config.Config.FSign,
Fsign: config.Config.FSign,
}
for _, signer := range config.Config.Signers {
rmnConfig.Signers = append(rmnConfig.Signers, RMNRemoteSigner{
Expand Down

0 comments on commit a0bfff7

Please sign in to comment.