Skip to content

Commit 84b176c

Browse files
authored
Merge branch 'develop' into augustus.PLEX-1592.audit-fixes-2
2 parents cb08b95 + 369994c commit 84b176c

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

.github/CODEOWNERS

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,22 +7,28 @@
77
# https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-syntax
88

99
# global ownership
10-
* @smartcontractkit/bix-build @smartcontractkit/bix-framework
10+
* @smartcontractkit/bix-build @smartcontractkit/bix-framework @smartcontractkit/data-growth
1111

1212
# offchain code ownership
1313
/pkg/solana @smartcontractkit/bix-framework @smartcontractkit/bix-build
1414

1515
# e2e test ownership
1616
/integration-tests @smartcontractkit/bix-build @smartcontractkit/bix-framework
1717

18+
# contracts
19+
/contracts @smartcontractkit/data-growth
20+
1821
# gauntlet ownership
19-
/gauntlet @smartcontractkit/bix-build
22+
/gauntlet @smartcontractkit/data-growth
2023

2124
# monitoring ownership
22-
/pkg/monitoring @smartcontractkit/realtime @smartcontractkit/bix-build
25+
/pkg/monitoring @smartcontractkit/realtime @smartcontractkit/data-growth
2326

2427
# LOOP Plugin commands
25-
/pkg/solana/cmd/chainlink-solana @smartcontractkit/foundations @smartcontractkit/bix-build
28+
/pkg/solana/cmd/chainlink-solana @smartcontractkit/foundations @smartcontractkit/data-growth @smartcontractkit/bix-build
2629

2730
# CI/CD
28-
/.github/** @smartcontractkit/bix-build
31+
/.github/** @smartcontractkit/data-growth @smartcontractkit/bix-build
32+
33+
# SDK for feeds
34+
/ts @smartcontractkit/data-growth

integration-tests/relayinterface/chain_components_test.go

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1021,11 +1021,15 @@ func (it *SolanaChainComponentsInterfaceTester[T]) GetContractReader(t T) types.
10211021
require.NoError(t, err)
10221022

10231023
orm := logpoller.NewORM(chainID.String(), it.Helper.Database(), it.Helper.Logger(t))
1024+
lp := logpoller.New(logger.Sugared(it.Helper.Logger(t)), orm, it.Helper.MultiClient(), config.NewDefault())
1025+
t.Cleanup(func() {
1026+
_ = lp.Close
1027+
})
10241028
svc, err := chainreader.NewContractReaderService(
10251029
it.Helper.Logger(t),
10261030
it.Helper.RPCClient(),
10271031
contractReaderConfig,
1028-
logpoller.New(logger.Sugared(it.Helper.Logger(t)), orm, it.Helper.MultiClient(), config.NewDefault()))
1032+
lp)
10291033

10301034
require.NoError(t, err)
10311035
servicetest.Run(t, svc)

0 commit comments

Comments
 (0)