mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 06:41:41 +01:00
Fix incorrect equality check
This commit is contained in:
parent
6e9edc7b53
commit
ef3081e89c
1 changed files with 1 additions and 1 deletions
|
@ -387,7 +387,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);
|
||||
} else if (ballot.getVote() != entry.getValue().get()) {
|
||||
} else if (!ballot.getVote().equals(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