mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-24 07:07:43 +01:00
Fix broken maker
This commit is contained in:
parent
87b73592e8
commit
ee6e20eeb4
1 changed files with 3 additions and 1 deletions
|
@ -34,12 +34,14 @@ public class PreferenceMakers {
|
|||
public static final Property<Preferences, BisqEnvironment> bisqEnvironment = new Property<>();
|
||||
public static final Property<Preferences, String> btcNodesFromOptions = new Property<>();
|
||||
public static final Property<Preferences, String> useTorFlagFromOptions = new Property<>();
|
||||
public static final Property<Preferences, String> referralID = new Property<>();
|
||||
|
||||
public static final Instantiator<Preferences> Preferences = lookup -> new Preferences(
|
||||
lookup.valueOf(storage, new SameValueDonor<Storage>(null)),
|
||||
lookup.valueOf(bisqEnvironment, new SameValueDonor<BisqEnvironment>(null)),
|
||||
lookup.valueOf(btcNodesFromOptions, new SameValueDonor<String>(null)),
|
||||
lookup.valueOf(useTorFlagFromOptions, new SameValueDonor<String>(null)));
|
||||
lookup.valueOf(useTorFlagFromOptions, new SameValueDonor<String>(null)),
|
||||
lookup.valueOf(referralID, new SameValueDonor<String>(null)));
|
||||
|
||||
public static final Preferences empty = make(a(Preferences));
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue