mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 23:18:17 +01:00
Bugfixes and improvements
- Reactivate updateProposalList at onBlockAdded - Use ArrayList instead of FilteredList at getSortedProposalList - Update Predicates at onBlockAdded and onProtectedStorageEntry - Remove isProposalPeriodValid, isBlindVotePeriodValid and isVoteRevealPeriodValid - Remove isTxHeightInPhaseTest (removed buggy method)
This commit is contained in:
parent
bdaeec0ca3
commit
c756acde53
1 changed files with 3 additions and 1 deletions
|
@ -35,6 +35,8 @@ import bisq.core.dao.vote.proposal.ProposalPayload;
|
||||||
import bisq.core.dao.vote.proposal.ProposalService;
|
import bisq.core.dao.vote.proposal.ProposalService;
|
||||||
import bisq.core.locale.Res;
|
import bisq.core.locale.Res;
|
||||||
|
|
||||||
|
import bisq.common.UserThread;
|
||||||
|
|
||||||
import javax.inject.Inject;
|
import javax.inject.Inject;
|
||||||
|
|
||||||
import javafx.scene.Node;
|
import javafx.scene.Node;
|
||||||
|
@ -159,7 +161,7 @@ public abstract class BaseProposalView extends ActivatableView<GridPane, Void> i
|
||||||
@Override
|
@Override
|
||||||
public void onBlockAdded(BsqBlock bsqBlock) {
|
public void onBlockAdded(BsqBlock bsqBlock) {
|
||||||
// Need delay otherwise we modify list while dispatching and cause a ConcurrentModificationException
|
// Need delay otherwise we modify list while dispatching and cause a ConcurrentModificationException
|
||||||
//UserThread.execute(this::updateList);
|
UserThread.execute(this::updateProposalList);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue