Add info popup for mining fee at deposit funds

This commit is contained in:
Manfred Karrer 2016-05-25 12:04:29 +02:00
parent 5787ef8c1b
commit a677187fe1
6 changed files with 105 additions and 60 deletions

View file

@ -47,6 +47,9 @@ public final class Preferences implements Persistable {
private static final Logger log = LoggerFactory.getLogger(Preferences.class);
public static Preferences INSTANCE;
// Deactivate mBit for now as most screens are not supporting it yet
private static final List<String> BTC_DENOMINATIONS = Arrays.asList(MonetaryFormat.CODE_BTC/*, MonetaryFormat.CODE_MBTC*/);
transient static final private ArrayList<BlockChainExplorer> blockChainExplorersTestNet = new ArrayList<>(Arrays.asList(
@ -128,6 +131,7 @@ public final class Preferences implements Persistable {
@Inject
public Preferences(Storage<Preferences> storage, BitsquareEnvironment bitsquareEnvironment) {
log.debug("Preferences " + this);
INSTANCE = this;
this.storage = storage;
this.bitsquareEnvironment = bitsquareEnvironment;