Skip to content
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: remove delegator addess from MsgCreateValidator #14567

Merged
merged 25 commits into from
Jan 17, 2023
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
399ed1b
remove delegate address
0xmuralik Jan 10, 2023
fd49247
Merge branch 'cosmos:main' into murali/staking
0xmuralik Jan 10, 2023
1c10167
proto-gen
0xmuralik Jan 10, 2023
6c49ce7
Merge branch 'murali/staking' of https://github.com/0xmuralik/cosmos-…
0xmuralik Jan 10, 2023
c0dc0e2
fix errors
0xmuralik Jan 10, 2023
d500d90
deprecate delegator address in proto
0xmuralik Jan 11, 2023
8f930fa
proto-gen
0xmuralik Jan 11, 2023
eb357ba
proto docs
0xmuralik Jan 12, 2023
9634364
feat: create config fix tool (#14342)
julienrbrt Jan 10, 2023
c6f3d03
refactor: migrate `e2e/evidence` away from testify suite (#14553)
samricotta Jan 10, 2023
ef2671d
chore: add action to add issues to project board when labeled (#14570)
tac0turtle Jan 10, 2023
b44a871
refactor: migrate calls from alias file to appropriate store/types (#…
noelukwa Jan 10, 2023
021aefd
feat(mempool): priority nonce mempool option with tx replacement (#14…
JayT106 Jan 10, 2023
c9c5a77
docs: new key type for keyring (#14573)
JulianToledano Jan 11, 2023
c31fe30
feat(textual): Add Tx envelope Value Renderer (#13600)
amaury1093 Jan 11, 2023
b476810
chore: Replace testify with gotest.tools in staking integration tests…
likhita-809 Jan 11, 2023
771a623
chore: Replace testify with gotest.tools in bank integration tests (#…
likhita-809 Jan 11, 2023
e2bef8f
build(deps): Bump google.golang.org/grpc from 1.51.0 to 1.52.0 (#14580)
dependabot[bot] Jan 11, 2023
4f2eda3
test: Added test cases for precisionMultiplier (#14576)
aeharvlee Jan 12, 2023
cf166e1
proto docs
0xmuralik Jan 12, 2023
6b32a32
fix simulation test
0xmuralik Jan 12, 2023
e878b9a
Merge branch 'main' into murali/staking
0xmuralik Jan 12, 2023
78aac0a
Merge branch 'main' into murali/staking
alexanderbez Jan 16, 2023
bff845a
Merge branch 'main' into murali/staking
tac0turtle Jan 16, 2023
3a01ff4
changelog
0xmuralik Jan 17, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
deprecate delegator address in proto
  • Loading branch information
0xmuralik committed Jan 11, 2023
commit d500d908919d7cf42da1d2e4f0a6918e71dfaa67
9 changes: 6 additions & 3 deletions proto/cosmos/staking/v1beta1/tx.proto
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,12 @@ message MsgCreateValidator {
(gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int",
(gogoproto.nullable) = false
];
string validator_address = 4 [(cosmos_proto.scalar) = "cosmos.AddressString"];
google.protobuf.Any pubkey = 5 [(cosmos_proto.accepts_interface) = "cosmos.crypto.PubKey"];
cosmos.base.v1beta1.Coin value = 6 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
// Deprecated: Use of Delegator Address in MsgCreateValidator is deprecated.
// The validator address and delegator address are always same while creating validator.
alexanderbez marked this conversation as resolved.
Show resolved Hide resolved
string delegator_address = 4 [(cosmos_proto.scalar) = "cosmos.AddressString", deprecated = true];
string validator_address = 5 [(cosmos_proto.scalar) = "cosmos.AddressString"];
google.protobuf.Any pubkey = 6 [(cosmos_proto.accepts_interface) = "cosmos.crypto.PubKey"];
cosmos.base.v1beta1.Coin value = 7 [(gogoproto.nullable) = false, (amino.dont_omitempty) = true];
}

// MsgCreateValidatorResponse defines the Msg/CreateValidator response type.
Expand Down