Don't show popup at vote result exception

This commit is contained in:
Manfred Karrer 2019-01-29 11:51:08 +01:00
parent ce77412903
commit e42c9d4f76
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46

View File

@ -283,7 +283,9 @@ public class MainViewModel implements ViewModel, BisqSetup.BisqSetupCompleteList
.show();
});
bisqSetup.setVoteResultExceptionHandler(voteResultException -> {
new Popup<>().error(voteResultException.toString()).show();
log.warn(voteResultException.toString());
//new Popup<>().error(voteResultException.toString()).show();
});
bisqSetup.setChainFileLockedExceptionHandler(msg -> {