Skip to content

Commit 571766f

Browse files
committed
Fix go mod tidy for integration-tests modules
1 parent 5bb8eb8 commit 571766f

5 files changed

Lines changed: 36 additions & 18 deletions

File tree

core/services/gateway/handlers/confidentialrelay/handler.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -380,6 +380,8 @@ func (h *handler) errorResponse(
380380
case api.HandlerError:
381381
case api.RequestTimeoutError:
382382
case api.StaleNodeResponseError:
383+
case api.ConflictError:
384+
case api.LimitExceededError:
383385
}
384386

385387
return gwhandlers.UserCallbackPayload{
@@ -396,6 +398,8 @@ func (h *handler) errorResponse(
396398
func (h *handler) sendResponse(ctx context.Context, userRequest *activeRequest, resp gwhandlers.UserCallbackPayload) error {
397399
switch resp.ErrorCode {
398400
case api.StaleNodeResponseError:
401+
case api.ConflictError:
402+
case api.LimitExceededError:
399403
case api.FatalError:
400404
case api.NodeReponseEncodingError:
401405
case api.RequestTimeoutError:

integration-tests/go.mod

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ require (
4848
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20260317185256-d5f7db87ae70
4949
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260310183131-8d0f0e383288
5050
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20260310183131-8d0f0e383288
51-
github.com/smartcontractkit/chainlink-common v0.11.0
51+
github.com/smartcontractkit/chainlink-common v0.11.1-0.20260323163826-2c5b95089478
5252
github.com/smartcontractkit/chainlink-common/keystore v1.0.2
5353
github.com/smartcontractkit/chainlink-deployments-framework v0.86.3
5454
github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260320152158-2191d797b5ce
@@ -248,7 +248,7 @@ require (
248248
github.com/felixge/httpsnoop v1.0.4 // indirect
249249
github.com/ferranbt/fastssz v0.1.4 // indirect
250250
github.com/fsnotify/fsnotify v1.9.0 // indirect
251-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
251+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
252252
github.com/gabriel-vasile/mimetype v1.4.13 // indirect
253253
github.com/gagliardetto/anchor-go v1.0.0 // indirect
254254
github.com/gagliardetto/binary v0.8.0 // indirect
@@ -355,6 +355,7 @@ require (
355355
github.com/hashicorp/yamux v0.1.2 // indirect
356356
github.com/hasura/go-graphql-client v0.15.1 // indirect
357357
github.com/hdevalence/ed25519consensus v0.2.0 // indirect
358+
github.com/hf/nitrite v0.0.0-20241225144000-c2d5d3c4f303 // indirect
358359
github.com/holiman/billy v0.0.0-20250707135307-f2f9b9aae7db // indirect
359360
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
360361
github.com/holiman/uint256 v1.3.2 // indirect
@@ -501,6 +502,7 @@ require (
501502
github.com/smartcontractkit/chainlink-ccip/deployment v0.0.0-20260317185256-d5f7db87ae70 // indirect
502503
github.com/smartcontractkit/chainlink-ccv v0.0.0-20260320145055-eb20b529ff95 // indirect
503504
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect
505+
github.com/smartcontractkit/chainlink-common/pkg/teeattestation v0.0.0-20260316172927-2c727f64397c // indirect
504506
github.com/smartcontractkit/chainlink-data-streams v0.1.13 // indirect
505507
github.com/smartcontractkit/chainlink-evm/contracts/cre/gobindings v0.0.0-20260107191744-4b93f62cffe3 // indirect
506508
github.com/smartcontractkit/chainlink-feeds v0.1.2-0.20250227211209-7cd000095135 // indirect
@@ -513,7 +515,7 @@ require (
513515
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/heartbeat v0.0.0-20260115142640-f6b99095c12e // indirect
514516
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/message-discovery v0.0.0-20251211142334-5c3421fe2c8d // indirect
515517
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251211142334-5c3421fe2c8d // indirect
516-
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260226130359-963f935e0396 // indirect
518+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260320153346-314ec8dbe5a4 // indirect
517519
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b // indirect
518520
github.com/smartcontractkit/chainlink-protos/node-platform v0.0.0-20260211172625-dff40e83b3c9 // indirect
519521
github.com/smartcontractkit/chainlink-protos/orchestrator v0.10.0 // indirect

integration-tests/go.sum

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

integration-tests/load/go.mod

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ require (
2727
github.com/smartcontractkit/chainlink-ccip v0.1.1-solana.0.20260317185256-d5f7db87ae70
2828
github.com/smartcontractkit/chainlink-ccip/chains/solana v0.0.0-20260310183131-8d0f0e383288
2929
github.com/smartcontractkit/chainlink-ccip/chains/solana/gobindings v0.0.0-20260310183131-8d0f0e383288
30-
github.com/smartcontractkit/chainlink-common v0.11.0
30+
github.com/smartcontractkit/chainlink-common v0.11.1-0.20260323163826-2c5b95089478
3131
github.com/smartcontractkit/chainlink-deployments-framework v0.86.3
3232
github.com/smartcontractkit/chainlink-evm v0.3.4-0.20260320152158-2191d797b5ce
3333
github.com/smartcontractkit/chainlink-testing-framework/framework v0.15.3
@@ -209,7 +209,7 @@ require (
209209
github.com/felixge/httpsnoop v1.0.4 // indirect
210210
github.com/ferranbt/fastssz v0.1.4 // indirect
211211
github.com/fsnotify/fsnotify v1.9.0 // indirect
212-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
212+
github.com/fxamacker/cbor/v2 v2.9.0 // indirect
213213
github.com/gabriel-vasile/mimetype v1.4.13 // indirect
214214
github.com/gagliardetto/anchor-go v1.0.0 // indirect
215215
github.com/gagliardetto/binary v0.8.0 // indirect
@@ -319,6 +319,7 @@ require (
319319
github.com/hashicorp/yamux v0.1.2 // indirect
320320
github.com/hasura/go-graphql-client v0.15.1 // indirect
321321
github.com/hdevalence/ed25519consensus v0.2.0 // indirect
322+
github.com/hf/nitrite v0.0.0-20241225144000-c2d5d3c4f303 // indirect
322323
github.com/holiman/billy v0.0.0-20250707135307-f2f9b9aae7db // indirect
323324
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
324325
github.com/holiman/uint256 v1.3.2 // indirect
@@ -477,6 +478,7 @@ require (
477478
github.com/smartcontractkit/chainlink-ccv v0.0.0-20260320145055-eb20b529ff95 // indirect
478479
github.com/smartcontractkit/chainlink-common/keystore v1.0.2 // indirect
479480
github.com/smartcontractkit/chainlink-common/pkg/chipingress v0.0.10 // indirect
481+
github.com/smartcontractkit/chainlink-common/pkg/teeattestation v0.0.0-20260316172927-2c727f64397c // indirect
480482
github.com/smartcontractkit/chainlink-data-streams v0.1.13 // indirect
481483
github.com/smartcontractkit/chainlink-evm/contracts/cre/gobindings v0.0.0-20260107191744-4b93f62cffe3 // indirect
482484
github.com/smartcontractkit/chainlink-evm/gethwrappers v0.0.0-20260119171452-39c98c3b33cd // indirect
@@ -490,7 +492,7 @@ require (
490492
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/heartbeat v0.0.0-20260115142640-f6b99095c12e // indirect
491493
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/message-discovery v0.0.0-20251211142334-5c3421fe2c8d // indirect
492494
github.com/smartcontractkit/chainlink-protos/chainlink-ccv/verifier v0.0.0-20251211142334-5c3421fe2c8d // indirect
493-
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260226130359-963f935e0396 // indirect
495+
github.com/smartcontractkit/chainlink-protos/cre/go v0.0.0-20260320153346-314ec8dbe5a4 // indirect
494496
github.com/smartcontractkit/chainlink-protos/job-distributor v0.18.0 // indirect
495497
github.com/smartcontractkit/chainlink-protos/linking-service/go v0.0.0-20251002192024-d2ad9222409b // indirect
496498
github.com/smartcontractkit/chainlink-protos/node-platform v0.0.0-20260211172625-dff40e83b3c9 // indirect

integration-tests/load/go.sum

Lines changed: 11 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)