Skip to content

Commit

Permalink
Added install deps for gauntlet
Browse files Browse the repository at this point in the history
  • Loading branch information
smickovskid committed Aug 7, 2023
1 parent 8f63463 commit dc3c69d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion integration-tests/gauntlet/gauntlet_solana.go
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,11 @@ func (sg *SolanaGauntlet) DeployOCR2() (string, error) {
return "", nil
}
func (sg *SolanaGauntlet) ConfigureOCR2(onChainConfig common.OCR2OnChainConfig, offChainConfig common.OCROffChainConfig, payees common.PayeeConfig, proposalAccept common.ProposalAcceptConfig) error {
_, err := sg.ProposeOnChainConfig(sg.ProposalAddress, onChainConfig, sg.OcrAddress)
err := sg.InstallDependencies()
if err != nil {
return err
}
_, err = sg.ProposeOnChainConfig(sg.ProposalAddress, onChainConfig, sg.OcrAddress)
if err != nil {
return err
}
Expand Down

0 comments on commit dc3c69d

Please sign in to comment.