Skip to content

Commit

Permalink
changeset + fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
RensR committed Oct 18, 2024
1 parent 14bf92f commit 33a147e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions contracts/.changeset/nice-rocks-trade.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
'@chainlink/contracts': patch
---

#internal Minor fixes and changing the order of removes/adds in feeToken config

CCIP-3730
CCIP-3727
CCIP-3725
4 changes: 2 additions & 2 deletions integration-tests/deployment/ccip/view/v1_6/onramp.go
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ func GenerateOnRampView(

destChainSpecificData := make(map[uint64]DestChainSpecificData)
for _, destChainSelector := range destChainSelectors {
allowedSendersList, err := onRampContract.GetAllowedSendersList(nil, destChainSelector)
allowListInformation, err := onRampContract.GetAllowedSendersList(nil, destChainSelector)
if err != nil {
return OnRampView{}, fmt.Errorf("failed to get allowed senders list: %w", err)
}
Expand All @@ -89,7 +89,7 @@ func GenerateOnRampView(
return OnRampView{}, fmt.Errorf("failed to get router: %w", err)
}
destChainSpecificData[destChainSelector] = DestChainSpecificData{
AllowedSendersList: allowedSendersList,
AllowedSendersList: allowListInformation.ConfiguredAddresses,
DestChainConfig: destChainConfig,
ExpectedNextSeqNum: expectedNextSeqNum,
Router: router,
Expand Down

0 comments on commit 33a147e

Please sign in to comment.