diff --git a/src/main/java/com/limechain/grandpa/round/GrandpaRound.java b/src/main/java/com/limechain/grandpa/round/GrandpaRound.java index 6d86bd67..29dbc962 100644 --- a/src/main/java/com/limechain/grandpa/round/GrandpaRound.java +++ b/src/main/java/com/limechain/grandpa/round/GrandpaRound.java @@ -254,7 +254,7 @@ private boolean isFinalizable() { * * @return if the current round is completable */ - public boolean checkIfRoundIsCompletable() { + public boolean checkIfCompletable() { Map votes = getDirectVotes(SubRound.PRE_COMMIT); long votesCount = votes.values().stream() @@ -370,7 +370,7 @@ public BlockHeader findGrandpaGhost() { BlockHeader result = selectBlockWithMostVotes(blocks, getPrevBestFinalCandidate()); this.grandpaGhost = result; - this.isCompletable = checkIfRoundIsCompletable(); + this.isCompletable = checkIfCompletable(); return result; }