-
Notifications
You must be signed in to change notification settings - Fork 129
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
Clean up slash-log state #2093
Comments
|
@insumity since double voting would send an |
Closing as duplicate of #1502 |
Problem
The
provider
module still stores state underSlashLogBytePrefix
.SlashLogBytePrefix
is used to construct theSlashLogKey
that is used inSetSlashLog
andGetSlashLog
methods.SetSlashLog
is used here whileGetSlashLog
is only used in an integration test, so the fact that we set something but we have no getters to read it makes this unusable. Additionally, the whole slashing for equivocation evidence chunk whereSetSlashLog
is called is not really used. Equivocation evidence is to be submitted throughMsgSubmitConsumerDoubleVoting
messages.This means that we can remove everything associated with
SlashLogBytePrefix
.The text was updated successfully, but these errors were encountered: