Skip to content

Commit

Permalink
Merge branch 'BCFR-298-multinode-client' of https://github.com/smartc…
Browse files Browse the repository at this point in the history
…ontractkit/chainlink-solana into BCFR-300-multinode-txsender
  • Loading branch information
DylanTinianov committed Oct 4, 2024
2 parents f9f0f45 + 38166ee commit a769bf0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
1 change: 1 addition & 0 deletions pkg/solana/client/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import (
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink-common/pkg/logger"

mn "github.com/smartcontractkit/chainlink-solana/pkg/solana/client/multinode"
"github.com/smartcontractkit/chainlink-solana/pkg/solana/config"
"github.com/smartcontractkit/chainlink-solana/pkg/solana/monitor"
Expand Down
7 changes: 3 additions & 4 deletions pkg/solana/client/multinode_client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ package client

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

"github.com/gagliardetto/solana-go"
"github.com/smartcontractkit/chainlink-common/pkg/logger"
"github.com/smartcontractkit/chainlink-common/pkg/utils/tests"
"github.com/stretchr/testify/require"

"github.com/smartcontractkit/chainlink-common/pkg/logger"
"github.com/smartcontractkit/chainlink-solana/pkg/solana/config"
)

func TestMultiNodeClient_Subscriptions_Integration(t *testing.T) {
func TestMultiNodeClient_Subscriptions(t *testing.T) {
url := SetupLocalSolNode(t)
privKey, err := solana.NewRandomPrivateKey()
require.NoError(t, err)
Expand All @@ -25,7 +25,6 @@ func TestMultiNodeClient_Subscriptions_Integration(t *testing.T) {
cfg := config.NewDefault()
// Enable MultiNode
enabled := true
cfg.MultiNode.SetDefaults()
cfg.Enabled = &enabled

c, err := NewMultiNodeClient(url, cfg, requestTimeout, lggr)
Expand Down

0 comments on commit a769bf0

Please sign in to comment.