diff --git a/desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java b/desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java index eeee47cf8b..65fafdfb99 100644 --- a/desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java +++ b/desktop/src/main/java/bisq/desktop/main/funds/withdrawal/WithdrawalView.java @@ -136,7 +136,7 @@ public class WithdrawalView extends ActivatableView { private final SortedList sortedList = new SortedList<>(observableList); private Set selectedItems = new HashSet<>(); private BalanceListener balanceListener; - private Set fromAddresses; + private Set fromAddresses = new HashSet<>(); private Coin totalAvailableAmountOfSelectedItems = Coin.ZERO; private Coin amountAsCoin = Coin.ZERO; private Coin sendersAmount = Coin.ZERO;