Refactor gui package structure to avoid cyclic dependencies

This commit is contained in:
Manfred Karrer 2014-09-09 09:38:47 +02:00
parent 87a057cf5d
commit 173073caf8
52 changed files with 779 additions and 324 deletions

View file

@ -38,7 +38,7 @@ public class FeePolicy {
// The remaining 0.0000454 BTC is given to miners at the moment as it is lower then dust.
public static final Coin REGISTRATION_FEE = TX_FEE.add(TX_FEE);
public static final Coin CREATE_OFFER_FEE = Coin.MILLICOIN; // 0.001
public static final Coin CREATE_OFFER_FEE = REGISTRATION_FEE; // 0.0002
public static final Coin TAKE_OFFER_FEE = CREATE_OFFER_FEE;
private static final Logger log = LoggerFactory.getLogger(FeePolicy.class);