We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 93a4071 commit 2ddce51Copy full SHA for 2ddce51
x/stablestake/migrations/v10_migration.go
@@ -5,7 +5,7 @@ import (
5
)
6
7
func (m Migrator) V10Migration(ctx sdk.Context) error {
8
- if ctx.ChainID() == "elys-mainnet" {
+ if ctx.ChainID() == "elys-1" {
9
return nil
10
}
11
m.keeper.V10Migrate(ctx)
x/stablestake/types/keys.go
@@ -15,7 +15,7 @@ const (
15
16
var (
17
DebtPrefixKey = []byte{0x01}
18
- InterestPrefixKey = []byte{0x02}
+ InterestPrefixKey = []byte{0x02} // deprecated
19
ParamKeyPrefix = []byte{0x03}
20
AmmPoolKeyPrefix = []byte{0x04}
21
PoolPrefixKey = []byte{0x05}
0 commit comments