mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-08-06 05:34:50 -04:00
Add info popup for mining fee at deposit funds
This commit is contained in:
parent
5787ef8c1b
commit
a677187fe1
6 changed files with 105 additions and 60 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue