Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deployment/ccip/shared/token_pools.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import (
ccipconfig "github.com/smartcontractkit/chainlink/v2/core/services/ocr2/plugins/ccip/config"
)

var CurrentTokenPoolVersion = deployment.Version1_5_1
var CurrentTokenPoolVersion = deployment.Version1_6_1
Copy link

Copilot AI Feb 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updating CurrentTokenPoolVersion to 1.6.1 creates an inconsistency with hardcoded version references in deployment/ccip/changeset/cs_prerequisites.go. That file deploys new token pools with Version1_5_1 hardcoded (lines 867, 913, 958, 1006, 1201, 1315), but retrieves existing pools using CurrentTokenPoolVersion (lines 211, 216, 221, 226). This means newly deployed pools will have version 1.5.1 but will not be found when searched using CurrentTokenPoolVersion (which is now 1.6.1). The hardcoded Version1_5_1 references should be changed to use shared.CurrentTokenPoolVersion instead.

Suggested change
var CurrentTokenPoolVersion = deployment.Version1_6_1
var CurrentTokenPoolVersion = deployment.Version1_5_1

Copilot uses AI. Check for mistakes.
var FastTransferTokenPoolVersion = deployment.Version1_6_3Dev
var BurnMintWithExternalMinterFastTransferTokenPoolVersion = deployment.Version1_6_0
var HybridWithExternalMinterFastTransferTokenPoolVersion = deployment.Version1_6_0
Expand Down
Loading