use of bisq.desktop.main.overlays.windows.EmptyWalletWindow in project bisq-desktop by bisq-network.
the class BisqApp method showEmptyWalletPopup.
private void showEmptyWalletPopup(WalletService walletService) {
EmptyWalletWindow emptyWalletWindow = injector.getInstance(EmptyWalletWindow.class);
emptyWalletWindow.setWalletService(walletService);
emptyWalletWindow.show();
}
Aggregations