Skip to content

Commit

Permalink
More merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
connorwstein committed Nov 20, 2024
1 parent 74eb6ca commit 8e9de17
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions deployment/ccip/changeset/active_candidate_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func TestActiveCandidate(t *testing.T) {
// Need to keep track of the block number for each chain so that event subscription can be done from that block.
startBlocks := make(map[uint64]*uint64)
// Send a message from each chain to every other chain.
expectedSeqNum := make(map[ccdeploy.SourceDestPair]uint64)
expectedSeqNum := make(map[SourceDestPair]uint64)
for src := range e.Chains {
for dest, destChain := range e.Chains {
if src == dest {
Expand All @@ -52,7 +52,7 @@ func TestActiveCandidate(t *testing.T) {
FeeToken: common.HexToAddress("0x0"),
ExtraArgs: nil,
})
expectedSeqNum[ccdeploy.SourceDestPair{
expectedSeqNum[SourceDestPair{
SourceChainSelector: src,
DestChainSelector: dest,
}] = msgSentEvent.SequenceNumber
Expand Down
6 changes: 3 additions & 3 deletions deployment/ccip/changeset/initial_deploy_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func TestInitialDeploy(t *testing.T) {
// Need to keep track of the block number for each chain so that event subscription can be done from that block.
startBlocks := make(map[uint64]*uint64)
// Send a message from each chain to every other chain.
expectedSeqNum := make(map[ccdeploy.SourceDestPair]uint64)
expectedSeqNum := make(map[SourceDestPair]uint64)

for src := range e.Chains {
for dest, destChain := range e.Chains {
Expand All @@ -99,7 +99,7 @@ func TestInitialDeploy(t *testing.T) {
FeeToken: common.HexToAddress("0x0"),
ExtraArgs: nil,
})
expectedSeqNum[ccdeploy.SourceDestPair{
expectedSeqNum[SourceDestPair{
SourceChainSelector: src,
DestChainSelector: dest,
}] = msgSentEvent.SequenceNumber
Expand All @@ -113,7 +113,7 @@ func TestInitialDeploy(t *testing.T) {
ConfirmTokenPriceUpdatedForAll(t, e, state, startBlocks,
DefaultInitialPrices.LinkPrice, DefaultInitialPrices.WethPrice)
// TODO: Fix gas prices?
//ccdeploy.ConfirmGasPriceUpdatedForAll(t, e, state, startBlocks)
//ConfirmGasPriceUpdatedForAll(t, e, state, startBlocks)
//
//// Wait for all exec reports to land
ConfirmExecWithSeqNrForAll(t, e, state, expectedSeqNum, startBlocks)
Expand Down

0 comments on commit 8e9de17

Please sign in to comment.