mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-05 05:46:44 +00:00
dont allow duplicate loading wallet references
This commit is contained in:
parent
4b3de044c3
commit
1bab07fc5f
1 changed files with 1 additions and 1 deletions
|
@ -120,7 +120,7 @@ public class AppController implements Initializable {
|
||||||
|
|
||||||
private Timeline statusTimeline;
|
private Timeline statusTimeline;
|
||||||
|
|
||||||
private final List<Wallet> loadingWallets = new ArrayList<>();
|
private final Set<Wallet> loadingWallets = new LinkedHashSet<>();
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void initialize(URL location, ResourceBundle resources) {
|
public void initialize(URL location, ResourceBundle resources) {
|
||||||
|
|
Loading…
Reference in a new issue