Skip to content

Commit b276604

Browse files
author
Sunny Jiao
committed
fix check style
1 parent 4307843 commit b276604

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

framework/src/main/java/org/tron/core/Wallet.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -789,7 +789,7 @@ public WitnessList getPaginatedNowWitnessList(long offset, long limit) {
789789
Map<ByteString, Long> countWitness = countVote(votesStore);
790790

791791
// Iterate through the witness list to apply vote changes and calculate the real-time vote count
792-
witnessCapsuleList.forEach((witnessCapsule) -> {
792+
witnessCapsuleList.forEach(witnessCapsule -> {
793793
long voteCount = countWitness.getOrDefault(witnessCapsule.getAddress(), 0L);
794794
witnessCapsule.setVoteCount(witnessCapsule.getVoteCount() + voteCount);
795795
});

0 commit comments

Comments
 (0)