Fix missing arguments

This commit is contained in:
Manfred Karrer 2019-04-19 20:37:19 -05:00
parent 59f31c7c6e
commit 25e2621ce5
No known key found for this signature in database
GPG Key ID: 401250966A6B2C46
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ public class PreferencesTest {
storage = mock(Storage.class);
bisqEnvironment = mock(BisqEnvironment.class);
preferences = new Preferences(storage, bisqEnvironment, null, null, null, null, null, null);
preferences = new Preferences(storage, bisqEnvironment, null, null, null, null, null, null, null);
}
@Test

View File

@ -43,7 +43,7 @@ public class PreferenceMakers {
lookup.valueOf(btcNodesFromOptions, new SameValueDonor<String>(null)),
lookup.valueOf(useTorFlagFromOptions, new SameValueDonor<String>(null)),
lookup.valueOf(referralID, new SameValueDonor<String>(null)),
null, null, null);
null, null, null, null);
public static final Preferences empty = make(a(Preferences));