mirror of
https://github.com/sparrowwallet/sparrow.git
synced 2024-11-04 21:36:45 +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 final List<Wallet> loadingWallets = new ArrayList<>();
|
||||
private final Set<Wallet> loadingWallets = new LinkedHashSet<>();
|
||||
|
||||
@Override
|
||||
public void initialize(URL location, ResourceBundle resources) {
|
||||
|
|
Loading…
Reference in a new issue