Browse Source
Merge pull request #425 from NastiaS/polish
set default archived to false for mock generated accounts
master
Meriadec Pillet
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/bridge/makeMockBridge.js
|
|
@ -91,7 +91,7 @@ function makeMockBridge(opts?: Opts): WalletBridge<*> { |
|
|
|
currency, |
|
|
|
}) |
|
|
|
account.unit = currency.units[0] |
|
|
|
account.archived = true |
|
|
|
account.archived = false |
|
|
|
if (!unsubscribed) next(account) |
|
|
|
} |
|
|
|
if (!unsubscribed) complete() |
|
|
|