mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-06-30 09:37:28 -04:00
Orderbook, Mainview, refactorings
This commit is contained in:
parent
870cd062f5
commit
c30646a11c
72 changed files with 1995 additions and 1088 deletions
|
@ -57,7 +57,6 @@ public class BitSquareModule extends AbstractModule {
|
|||
@Override
|
||||
protected void configure() {
|
||||
bind(User.class).asEagerSingleton();
|
||||
bind(OrderBook.class).asEagerSingleton();
|
||||
bind(Persistence.class).asEagerSingleton();
|
||||
bind(Settings.class).asEagerSingleton();
|
||||
|
||||
|
@ -71,6 +70,7 @@ public class BitSquareModule extends AbstractModule {
|
|||
bind(BootstrappedPeerFactory.class).asEagerSingleton();
|
||||
|
||||
bind(TradeManager.class).asEagerSingleton();
|
||||
bind(OrderBook.class).asEagerSingleton();
|
||||
bind(NavigationController.class).asEagerSingleton();
|
||||
bind(OverlayController.class).asEagerSingleton();
|
||||
bind(BSFormatter.class).asEagerSingleton();
|
||||
|
@ -81,7 +81,6 @@ public class BitSquareModule extends AbstractModule {
|
|||
bind(InputValidator.class).asEagerSingleton();
|
||||
bind(PasswordValidator.class).asEagerSingleton();
|
||||
|
||||
|
||||
//bind(String.class).annotatedWith(Names.named("networkType")).toInstance(WalletFacade.MAIN_NET);
|
||||
// how to use reg test see description in the readme file
|
||||
bind(String.class).annotatedWith(Names.named("networkType")).toInstance(WalletFacade.REG_TEST_NET);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue