Skip to content

Commit

Permalink
fix: stable stake types (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
cosmic-vagabond authored Sep 5, 2024
1 parent 78b0051 commit 1371c20
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/s3 v1.53.1
github.com/cosmos/cosmos-sdk v0.47.11
github.com/cosmos/ibc-go/v7 v7.4.0
github.com/elys-network/elys v0.44.0
github.com/elys-network/elys v0.44.1-0.20240905082641-4f2d2c07018e
github.com/spf13/cobra v1.8.0
github.com/vbauerster/mpb/v8 v8.7.3
)
Expand Down
2 changes: 2 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1434,6 +1434,8 @@ github.com/elys-network/bandchain-packet v0.0.3-sdk47 h1:W4sP/JOXAoABhsV+ck1NTph
github.com/elys-network/bandchain-packet v0.0.3-sdk47/go.mod h1:/CtU24lu2E4RbPRcZFJfEagwW6TUdFcxv7pX0cYYSgk=
github.com/elys-network/elys v0.44.0 h1:TilVxWk2YdiX8EZtjzRe320KmqO8wpUVle2ZAT/MwTg=
github.com/elys-network/elys v0.44.0/go.mod h1:tRqOX2Tv3ex0XmQcrrR1Sqq8JWBsJ7sXZwYFrQAId40=
github.com/elys-network/elys v0.44.1-0.20240905082641-4f2d2c07018e h1:2aEmBjZTHHrAo7sHY1sc2yqg7yRb0fsSwjyEaSY6pSM=
github.com/elys-network/elys v0.44.1-0.20240905082641-4f2d2c07018e/go.mod h1:tRqOX2Tv3ex0XmQcrrR1Sqq8JWBsJ7sXZwYFrQAId40=
github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs=
github.com/emicklei/go-restful v2.9.5+incompatible/go.mod h1:otzb+WCGbkyDHkqmQmT5YD2WR4BBwUdeQoFo8l/7tVs=
github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ=
Expand Down
4 changes: 3 additions & 1 deletion types/types.go
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,9 @@ type TokenomicsInflationEntry struct {
type StableStake struct {
stablestaketypes.GenesisState

Params StableStakeParams `json:"params"`
Params StableStakeParams `json:"params"`
DebtList []interface{} `json:"debt_list"`
InterestList []interface{} `json:"interest_list"`
}

type StableStakeParams struct {
Expand Down

0 comments on commit 1371c20

Please sign in to comment.