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

Add isActiveAuthority and GrandpaKeyPair fields to AbstractState #714

Merged
merged 7 commits into from
Jan 27, 2025
Merged
Changes from 1 commit
Commits
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
chore: refactor
  • Loading branch information
Grigorov-Georgi committed Jan 27, 2025

Verified

This commit was signed with the committer’s verified signature. The key has expired.
diablodale Dale Phurrough
commit 8e73a158e74aeaa5e708407882389693c3a4c2ae
Original file line number Diff line number Diff line change
@@ -270,6 +270,6 @@ private void updateAuthorityStatus() {
.map(Optional::get)
.findFirst();

keyPair.ifPresentOrElse(AbstractState::setAuthorityStatus, AbstractState::unsetAuthorityStatus);
keyPair.ifPresentOrElse(AbstractState::setAuthorityStatus, AbstractState::clearAuthorityStatus);
}
}
2 changes: 1 addition & 1 deletion src/main/java/com/limechain/state/AbstractState.java
Original file line number Diff line number Diff line change
@@ -30,7 +30,7 @@ public static void setAuthorityStatus(Pair<byte[], byte[]> keyPair) {
grandpaKeyPair = keyPair;
}

public static void unsetAuthorityStatus() {
public static void clearAuthorityStatus() {
isActiveAuthority = false;
grandpaKeyPair = null;
}