Skip to content

Commit

Permalink
pkg/reader: fix fSign read (#544)
Browse files Browse the repository at this point in the history
  • Loading branch information
makramkd authored Feb 3, 2025
1 parent ff344bd commit 13e2609
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/reader/ccip.go
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ func (r *ccipChainReader) GetRMNRemoteConfig(
ContractAddress: rmnRemoteAddress,
ConfigDigest: vc.Config.RMNHomeContractConfigDigest,
Signers: signers,
FSign: vc.Config.F,
FSign: vc.Config.FSign,
ConfigVersion: vc.Version,
RmnReportVersion: header.DigestHeader,
}, nil
Expand Down Expand Up @@ -1461,7 +1461,7 @@ type signer struct {
type config struct {
RMNHomeContractConfigDigest cciptypes.Bytes32 `json:"rmnHomeContractConfigDigest"`
Signers []signer `json:"signers"`
F uint64 `json:"f"` // previously: MinSigners
FSign uint64 `json:"fSign"` // previously: MinSigners
}

// versionedConfig is used to parse the response from the RMNRemote contract's getVersionedConfig method.
Expand Down

0 comments on commit 13e2609

Please sign in to comment.