mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-23 15:00:30 +01:00
Fix if else case
This commit is contained in:
parent
39ee4c079f
commit
695ed137e2
1 changed files with 1 additions and 2 deletions
|
@ -388,8 +388,7 @@ public class VoteResultService implements DaoStateListener, DaoSetupService {
|
|||
if (!entry.getValue().isPresent()) {
|
||||
log.warn("We found a local vote but don't have that vote in the data from the " +
|
||||
"blind vote. ballot={}", ballot);
|
||||
}
|
||||
if (ballot.getVote() != entry.getValue().get()) {
|
||||
} else if (ballot.getVote() != entry.getValue().get()) {
|
||||
log.warn("We found a local vote but the vote from the " +
|
||||
"blind vote does not match. ballot={}, vote from blindVote data={}",
|
||||
ballot, entry.getValue().get());
|
||||
|
|
Loading…
Add table
Reference in a new issue