-
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
Reverted ChangePubKey #1340
Reverted ChangePubKey #1340
Conversation
Codecov Report
@@ Coverage Diff @@
## develop #1340 +/- ##
===========================================
- Coverage 65.5% 64.77% -0.73%
===========================================
Files 114 112 -2
Lines 6305 6271 -34
===========================================
- Hits 4130 4062 -68
- Misses 1949 1985 +36
+ Partials 226 224 -2 |
x/auth/mapper.go
Outdated
@@ -101,7 +101,7 @@ func (am AccountMapper) GetPubKey(ctx sdk.Context, addr sdk.Address) (crypto.Pub | |||
} | |||
|
|||
// Sets the PubKey of the account at address | |||
func (am AccountMapper) SetPubKey(ctx sdk.Context, addr sdk.Address, newPubKey crypto.PubKey) sdk.Error { | |||
func (am AccountMapper) setPubKey(ctx sdk.Context, addr sdk.Address, newPubKey crypto.PubKey) sdk.Error { |
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.
Can we delete this? It's not used anywhere as far as I can tell.
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.
utACK
* removed msgChangePubKey * changelog * removed setPubKey
Closes #1250