Skip to content

Commit

Permalink
Fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
DylanTinianov committed Oct 4, 2024
1 parent eb50e6a commit 9bf92d3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion pkg/solana/client/multinode_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ package client

import (
"context"
"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"
"testing"
"time"

"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"

"github.com/gagliardetto/solana-go"
"github.com/stretchr/testify/require"

Expand Down
2 changes: 1 addition & 1 deletion pkg/solana/txm/txm_internal_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ func TestTxm(t *testing.T) {

txm := NewTxm(id, func() (client.ReaderWriter, error) {
return mc, nil
}, cfg, nil, mkey, lggr)
}, nil, cfg, mkey, lggr)

Check failure on line 115 in pkg/solana/txm/txm_internal_test.go

View workflow job for this annotation

GitHub Actions / Relay Run Unit Tests

too many arguments in call to NewTxm
require.NoError(t, txm.Start(ctx))

// tracking prom metrics
Expand Down

0 comments on commit 9bf92d3

Please sign in to comment.