forked from Qortal/qortal
Merge pull request #65 from QuickMythril/reduce-doge-fee
reduce DOGE fees
This commit is contained in:
commit
bb35030112
@ -19,12 +19,13 @@ public class Dogecoin extends Bitcoiny {
|
|||||||
|
|
||||||
public static final String CURRENCY_CODE = "DOGE";
|
public static final String CURRENCY_CODE = "DOGE";
|
||||||
|
|
||||||
private static final Coin DEFAULT_FEE_PER_KB = Coin.valueOf(500000000); // 5 DOGE per 1000 bytes
|
private static final Coin DEFAULT_FEE_PER_KB = Coin.valueOf(1000000); // 0.01 DOGE per 1000 bytes
|
||||||
|
|
||||||
private static final long MINIMUM_ORDER_AMOUNT = 300000000L; // 3 DOGE minimum order. The RPC dust threshold is around 2 DOGE
|
private static final long MINIMUM_ORDER_AMOUNT = 100000000L; // 1 DOGE minimum order. See recommendations:
|
||||||
|
// https://github.com/dogecoin/dogecoin/blob/master/doc/fee-recommendation.md
|
||||||
|
|
||||||
// Temporary values until a dynamic fee system is written.
|
// Temporary values until a dynamic fee system is written.
|
||||||
private static final long MAINNET_FEE = 110000000L;
|
private static final long MAINNET_FEE = 100000L;
|
||||||
private static final long NON_MAINNET_FEE = 10000L; // TODO: calibrate this
|
private static final long NON_MAINNET_FEE = 10000L; // TODO: calibrate this
|
||||||
|
|
||||||
private static final Map<ConnectionType, Integer> DEFAULT_ELECTRUMX_PORTS = new EnumMap<>(ConnectionType.class);
|
private static final Map<ConnectionType, Integer> DEFAULT_ELECTRUMX_PORTS = new EnumMap<>(ConnectionType.class);
|
||||||
|
Loading…
Reference in New Issue
Block a user