Initialize Set to avoid nullpointer access

This commit is contained in:
sqrrm 2018-12-19 14:00:45 +01:00
parent f25d8c85de
commit 83aa0d7a77
No known key found for this signature in database
GPG key ID: 45235F9EF87089EC

View file

@ -136,7 +136,7 @@ public class WithdrawalView extends ActivatableView<VBox, Void> {
private final SortedList<WithdrawalListItem> sortedList = new SortedList<>(observableList);
private Set<WithdrawalListItem> selectedItems = new HashSet<>();
private BalanceListener balanceListener;
private Set<String> fromAddresses;
private Set<String> fromAddresses = new HashSet<>();
private Coin totalAvailableAmountOfSelectedItems = Coin.ZERO;
private Coin amountAsCoin = Coin.ZERO;
private Coin sendersAmount = Coin.ZERO;