From cd25e673f1fd7c0e7652a49ed4d2a33081b7d739 Mon Sep 17 00:00:00 2001 From: Mike Hearn Date: Wed, 22 Oct 2014 21:52:04 +0200 Subject: [PATCH] 10x fee drop, now most miners seem to have upgraded to 0.9+ --- core/src/main/java/org/bitcoinj/core/Transaction.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/src/main/java/org/bitcoinj/core/Transaction.java b/core/src/main/java/org/bitcoinj/core/Transaction.java index 28702b03..94b7d405 100644 --- a/core/src/main/java/org/bitcoinj/core/Transaction.java +++ b/core/src/main/java/org/bitcoinj/core/Transaction.java @@ -90,16 +90,16 @@ public class Transaction extends ChildMessage implements Serializable { /** * If fee is lower than this value (in satoshis), a default reference client will treat it as if there were no fee. - * Currently this is 10000 satoshis. + * Currently this is 1000 satoshis. */ - public static final Coin REFERENCE_DEFAULT_MIN_TX_FEE = Coin.valueOf(10000); + public static final Coin REFERENCE_DEFAULT_MIN_TX_FEE = Coin.valueOf(1000); /** * Any standard (ie pay-to-address) output smaller than this value (in satoshis) will most likely be rejected by the network. * This is calculated by assuming a standard output will be 34 bytes, and then using the formula used in - * {@link TransactionOutput#getMinNonDustValue(Coin)}. Currently it's 5460 satoshis. + * {@link TransactionOutput#getMinNonDustValue(Coin)}. Currently it's 546 satoshis. */ - public static final Coin MIN_NONDUST_OUTPUT = Coin.valueOf(5460); + public static final Coin MIN_NONDUST_OUTPUT = Coin.valueOf(546); // These are serialized in both bitcoin and java serialization. private long version;