-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(x/accounts): lockup account document, Tx and InitGenesis #23397
base: main
Are you sure you want to change the base?
Changes from 4 commits
e8cbdda
7f81583
99e0cd6
afd59ad
a735dd6
3a58ced
0116687
c1aa29a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
module cosmossdk.io/x/accounts | ||
|
||
go 1.23.3 | ||
go 1.23.4 | ||
|
||
require ( | ||
cosmossdk.io/api v0.8.1 | ||
cosmossdk.io/collections v1.0.0 | ||
cosmossdk.io/core v1.0.0 | ||
cosmossdk.io/core/testing v0.0.1 | ||
cosmossdk.io/depinject v1.1.0 | ||
cosmossdk.io/x/bank v0.0.0-20240226161501-23359a0b6d91 | ||
cosmossdk.io/x/bank v0.0.0-20241218110910-47409028a73d | ||
cosmossdk.io/x/tx v1.0.0 | ||
github.com/cosmos/cosmos-sdk v0.53.0 | ||
github.com/cosmos/gogoproto v1.7.0 | ||
|
@@ -40,8 +40,9 @@ require ( | |
cosmossdk.io/log v1.5.0 // indirect | ||
cosmossdk.io/math v1.5.0 | ||
cosmossdk.io/schema v1.0.0 | ||
cosmossdk.io/store v1.10.0-rc.1 // indirect | ||
cosmossdk.io/x/staking v0.0.0-00010101000000-000000000000 // indirect | ||
cosmossdk.io/store v1.10.0-rc.1.0.20241218084712-ca559989da43 // indirect | ||
cosmossdk.io/x/accounts/defaults/lockup v0.2.0-rc.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. any chance we can avoid this import? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Msgs for lockup account were added in v0.2.0. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If you can register the type in another way, you may replace it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We can register them in the app.go directly maybe. Could be something we add to the x/accounts documentation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If adding to x/accounts, this change would be a good way to do it. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Simapp is its own go.mod, so it would have no impact to do the registration there and be only beneficial. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should the lockup type registration be done in each chain's app.go? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I have reverted it once. |
||
cosmossdk.io/x/staking v0.0.0-20241218110910-47409028a73d // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect | ||
github.com/99designs/keyring v1.2.2 // indirect | ||
|
@@ -142,7 +143,7 @@ require ( | |
github.com/zondax/ledger-go v0.14.3 // indirect | ||
gitlab.com/yawning/secp256k1-voi v0.0.0-20230925100816-f2616030848b // indirect | ||
gitlab.com/yawning/tuplehash v0.0.0-20230713102510-df83abbf9a02 // indirect | ||
go.etcd.io/bbolt v1.4.0-alpha.0.0.20240404170359-43604f3112c5 // indirect | ||
go.etcd.io/bbolt v1.4.0-alpha.1 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.uber.org/mock v0.5.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Invalid Go version specified.
The Go version
1.23.4
is incorrect as it does not exist. The latest stable version of Go is 1.22.x.📝 Committable suggestion