diff --git a/go.mod b/go.mod index 80489d3db..57024c04c 100644 --- a/go.mod +++ b/go.mod @@ -20,7 +20,6 @@ require ( github.com/smartcontractkit/chainlink-common v0.3.1-0.20241112140826-0e2daed34ef6 github.com/smartcontractkit/libocr v0.0.0-20241007185508-adbe57025f12 github.com/stretchr/testify v1.9.0 - github.com/test-go/testify v1.1.4 go.uber.org/zap v1.27.0 golang.org/x/exp v0.0.0-20240909161429-701f63a606c0 golang.org/x/sync v0.8.0 diff --git a/pkg/solana/chainwriter/chain_writer.go b/pkg/solana/chainwriter/chain_writer.go index 0a6d9d374..0d9f365f8 100644 --- a/pkg/solana/chainwriter/chain_writer.go +++ b/pkg/solana/chainwriter/chain_writer.go @@ -27,6 +27,7 @@ type SolanaChainWriterService struct { codecs map[string]types.Codec } +//nolint // ignoring naming suggestion type ChainWriterConfig struct { Programs map[string]ProgramConfig } @@ -285,7 +286,7 @@ func (s *SolanaChainWriterService) GetFeeComponents(ctx context.Context) (*types fee := s.ge.BaseComputeUnitPrice() return &types.ChainFeeComponents{ - ExecutionFee: big.NewInt(int64(fee)), + ExecutionFee: new(big.Int).SetUint64(fee), DataAvailabilityFee: nil, }, nil }