Skip to content

Commit 2ddce51

Browse files
committed
review changes
1 parent 93a4071 commit 2ddce51

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

x/stablestake/migrations/v10_migration.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
)
66

77
func (m Migrator) V10Migration(ctx sdk.Context) error {
8-
if ctx.ChainID() == "elys-mainnet" {
8+
if ctx.ChainID() == "elys-1" {
99
return nil
1010
}
1111
m.keeper.V10Migrate(ctx)

x/stablestake/types/keys.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const (
1515

1616
var (
1717
DebtPrefixKey = []byte{0x01}
18-
InterestPrefixKey = []byte{0x02}
18+
InterestPrefixKey = []byte{0x02} // deprecated
1919
ParamKeyPrefix = []byte{0x03}
2020
AmmPoolKeyPrefix = []byte{0x04}
2121
PoolPrefixKey = []byte{0x05}

0 commit comments

Comments
 (0)