Skip to content

Commit

Permalink
integration-tests: fix missing lines due to rebase conflicts and merg…
Browse files Browse the repository at this point in the history
…e commits
  • Loading branch information
cfal committed Aug 9, 2023
1 parent 8584603 commit bc0e2a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions integration-tests/common/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@ func (cc *ChainlinkClient) LoadOCR2Config(proposalId string) (*OCR2Config, error
payload.ProposalId = proposalId
payload.Signers = onChainKeys
payload.Transmitters = txKeys
payload.Payees = txKeys // Set payees to same addresses as transmitters
payload.OffchainConfig.OffchainPublicKeys = offChainKeys
payload.OffchainConfig.PeerIds = peerIds
payload.OffchainConfig.ConfigPublicKeys = cfgKeys
Expand Down
3 changes: 2 additions & 1 deletion integration-tests/ocr2_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (

"github.com/cosmos/cosmos-sdk/types"
"github.com/stretchr/testify/require"
"go.uber.org/zap/zapcore"
)

func TestOCRBasic(t *testing.T) {
Expand Down Expand Up @@ -106,7 +107,7 @@ func TestOCRBasic(t *testing.T) {
proposalId, err := cg.BeginProposal(ocrAddress)
require.NoError(t, err, "Could not begin proposal")

cfg, err := chainlinkClient.LoadOCR2Config(proposalId, []string{commonConfig.Account})
cfg, err := chainlinkClient.LoadOCR2Config(proposalId)
require.NoError(t, err, "Could not load OCR2 config")

var parsedConfig []byte
Expand Down

0 comments on commit bc0e2a7

Please sign in to comment.