Skip to content

Commit 9e64f4d

Browse files
committed
chore: 🙏
1 parent 3f0b2e3 commit 9e64f4d

3 files changed

Lines changed: 8 additions & 4 deletions

File tree

e2e/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ func TestChainUpgrade(t *testing.T) {
2727
t.Skip("skipping test in short mode.")
2828
}
2929

30-
genesisVersion := "v11.0.1"
30+
genesisVersion := "v11.0.0-rc.1"
3131

3232
upgrades := []e2e.ChainUpgrade{
3333
{

e2e/utils.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ import (
4848
const (
4949
ghcrRepo = "ghcr.io/noble-assets/noble"
5050
containerUidGid = "1025:1025"
51-
e2eChainID = upgrade.MainnetChainID
51+
e2eChainID = upgrade.TestnetChainID
5252
)
5353

5454
var (

upgrade/upgrade.go

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ func updateDispatchedAmounts(
138138

139139
// The only available route so far is IBC to CCTP. Since CCTP supports only USDC, we can
140140
// skip it since it is the correct denom.
141-
isWrongDenom := entry.Denom == expectedDenom
141+
isWrongDenom := entry.Denom != expectedDenom
142142

143143
if !isWrongChannelID && !isWrongDenom {
144144
// Source protocol is always IBC and destination is always CCTP
@@ -151,7 +151,11 @@ func updateDispatchedAmounts(
151151
)
152152
continue
153153
}
154-
logger.Debug("handling dispatched amounts entry",
154+
if !isWrongChannelID {
155+
correctChannel = entry.SourceId.GetCounterpartyId()
156+
}
157+
158+
logger.Error("handling dispatched amounts entry",
155159
"src_counterparty_id", entry.SourceId.GetCounterpartyId(),
156160
"dst_countertparty_id", entry.DestinationId.GetCounterpartyId(),
157161
"denom", entry.Denom,

0 commit comments

Comments
 (0)