Dust threshold is slightly more complicated now due to transition from bytes to weight: https://github.com/bitcoin/bitcoin/blob/0.16/src/policy/policy.cpp#L18
On Fri, May 25, 2018 at 5:15 AM, Andreas Schildbach <[email protected]> wrote: > For reference, the change in 2017 was (very briefly) discussed in > https://github.com/bitcoinj/bitcoinj/pull/1344 > > I'm not sure about the state of Bitcoin Core, but I can say that there > are no known problems with the MIN_NONDUST_OUTPUT of the 0.14 branch. > Does Core still care about "dust" at all these days? > > > On 05/22/2018 01:30 AM, Manfred Karrer wrote: > > I just stumbled over a change of MIN_NONDUST_OUTPUT in release 0.13 > which > > got reverted in 0.14. > > (https://github.com/bitcoinj/bitcoinj/commit/ > 470cda4ccf4eb1ec1bacce6ec00a3bf2faf44715#diff- > 25a7d8851e54b470509e6fc28323aa8b) > > What was the reason for that? > > And is the actual version correct? E.g. min dust output is 546 sat for > > non-segwit outputs. > > > > Is the REFERENCE_DEFAULT_MIN_TX_FEE the min relay fee in Bitcoin Core? > > > > In release-0.13 the REFERENCE_DEFAULT_MIN_TX_FEE was increased from 1000 > to > > 5000: > > https://github.com/bitcoinj/bitcoinj/blob/release-0.13/ > core/src/main/java/org/bitcoinj/core/Transaction.java > > public static final Coin REFERENCE_DEFAULT_MIN_TX_FEE = > Coin.valueOf(5000); > > // satoshis > > public static final Coin MIN_NONDUST_OUTPUT = Coin.valueOf(2730); // > > satoshis > > > > In release-0.14 and current master it was reverted to the previous > values: > > https://github.com/bitcoinj/bitcoinj/blob/master/core/src/ > main/java/org/bitcoinj/core/Transaction.java > > public static final Coin REFERENCE_DEFAULT_MIN_TX_FEE = > Coin.valueOf(1000); > > // 0.01 mBTC > > public static final Coin MIN_NONDUST_OUTPUT = Coin.valueOf(546); // > satoshis > > > > -- > You received this message because you are subscribed to the Google Groups > "bitcoinj" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- You received this message because you are subscribed to the Google Groups "bitcoinj" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
