mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-02-24 22:58:32 +01:00
DefaultRiskAnalysis.MIN_ANALYSIS_NONDUST_OUTPUT: Re-use existing constant and update comment.
This commit is contained in:
parent
79d6716120
commit
7fce16b3c1
1 changed files with 3 additions and 3 deletions
|
@ -47,10 +47,10 @@ public class DefaultRiskAnalysis implements RiskAnalysis {
|
|||
|
||||
/**
|
||||
* Any standard output smaller than this value (in satoshis) will be considered risky, as it's most likely be
|
||||
* rejected by the network. Currently it's 546 satoshis. This is different from {@link Transaction#MIN_NONDUST_OUTPUT}
|
||||
* because of an upcoming fee change in Bitcoin Core 0.9.
|
||||
* rejected by the network. This is usually the same as {@link Transaction#MIN_NONDUST_OUTPUT} but can be
|
||||
* different when the fee is about to change in Bitcoin Core.
|
||||
*/
|
||||
public static final Coin MIN_ANALYSIS_NONDUST_OUTPUT = Coin.valueOf(546);
|
||||
public static final Coin MIN_ANALYSIS_NONDUST_OUTPUT = Transaction.MIN_NONDUST_OUTPUT;
|
||||
|
||||
protected final Transaction tx;
|
||||
protected final List<Transaction> dependencies;
|
||||
|
|
Loading…
Add table
Reference in a new issue