Java Code Examples for org.bitcoinj.core.Transaction#MIN_NONDUST_OUTPUT

The following examples show how to use org.bitcoinj.core.Transaction#MIN_NONDUST_OUTPUT . You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: AbstractBitcoinNetParams.java    From bcm-android with GNU General Public License v3.0 4 votes vote down vote up
@Override
public Coin getMinNonDustOutput() {
    return Transaction.MIN_NONDUST_OUTPUT;
}
 
Example 2
Source File: AbstractBitcoinNetParams.java    From bisq-core with GNU Affero General Public License v3.0 4 votes vote down vote up
@Override
public Coin getMinNonDustOutput() {
    return Transaction.MIN_NONDUST_OUTPUT;
}
 
Example 3
Source File: AbstractBitcoinNetParams.java    From green_android with GNU General Public License v3.0 4 votes vote down vote up
@Override
public Coin getMinNonDustOutput() {
    return Transaction.MIN_NONDUST_OUTPUT;
}
 
Example 4
Source File: AbstractBitcoinNetParams.java    From GreenBits with GNU General Public License v3.0 4 votes vote down vote up
@Override
public Coin getMinNonDustOutput() {
    return Transaction.MIN_NONDUST_OUTPUT;
}