Skip to content

Commit

Permalink
Update bridge params for testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
trinitys7 committed Nov 4, 2024
1 parent d573c2b commit 5ba9bad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/upgrades/v2/upgrades.go
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,12 @@ func CreateUpgradeHandler(
}

// Update bridge genesis state
err = bridgeKeeper.Params.Set(ctx, bridgetypes.NewParams("realio15md2mg7w62xf53gdnv7m06lpumunuhqrm5fuxl"))
err = bridgeKeeper.Params.Set(ctx, bridgetypes.NewParams("realio1006v4rld78jz7ygzdm50440gs93z4rkats2pe4"))
if err != nil {
return nil, err
}
err = bridgeKeeper.RegisteredCoins.Set(ctx, "ario", bridgetypes.RateLimit{
Ratelimit: math.Int(math.NewUintFromString("1000000000000000000000000")),
Ratelimit: math.Int(math.NewUintFromString("2000000000000000000000000")),
CurrentInflow: math.ZeroInt(),
})
if err != nil {
Expand All @@ -124,7 +124,7 @@ func CreateUpgradeHandler(
return nil, err
}
err = bridgeKeeper.EpochInfo.Set(ctx, bridgetypes.EpochInfo{
StartTime: time.Unix(int64(1729763876), 0),
StartTime: time.Unix(int64(1730826000), 0),
Duration: time.Minute,
EpochCountingStarted: false,
})
Expand Down

0 comments on commit 5ba9bad

Please sign in to comment.