mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-01-31 23:32:16 +00:00
Fixed comment for Wallet.sendCoins regarding MIN_NONDUST_OUTPUT.
This commit is contained in:
parent
443b62481d
commit
cd4219ccb1
@ -1738,8 +1738,8 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
|
|||||||
* prevent this, but that should only occur once the transaction has been accepted by the network. This implies
|
* prevent this, but that should only occur once the transaction has been accepted by the network. This implies
|
||||||
* you cannot have more than one outstanding sending tx at once.</p>
|
* you cannot have more than one outstanding sending tx at once.</p>
|
||||||
*
|
*
|
||||||
* <p>You MUST ensure that nanocoins is larger than {@link Transaction#MIN_NONDUST_OUTPUT} or the transaction will
|
* <p>You MUST ensure that nanocoins is not smaller than {@link Transaction#MIN_NONDUST_OUTPUT} or the transaction
|
||||||
* almost certainly be rejected by the network as dust.</p>
|
* will almost certainly be rejected by the network as dust.</p>
|
||||||
*
|
*
|
||||||
* @param address The Bitcoin address to send the money to.
|
* @param address The Bitcoin address to send the money to.
|
||||||
* @param nanocoins How much currency to send, in nanocoins.
|
* @param nanocoins How much currency to send, in nanocoins.
|
||||||
@ -1788,7 +1788,7 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
|
|||||||
* successfully broadcast. This means that even if the network hasn't heard about your transaction you won't be
|
* successfully broadcast. This means that even if the network hasn't heard about your transaction you won't be
|
||||||
* able to spend those same coins again.</p>
|
* able to spend those same coins again.</p>
|
||||||
*
|
*
|
||||||
* <p>You MUST ensure that value is smaller than {@link Transaction#MIN_NONDUST_OUTPUT} or the transaction will
|
* <p>You MUST ensure that value is not smaller than {@link Transaction#MIN_NONDUST_OUTPUT} or the transaction will
|
||||||
* almost certainly be rejected by the network as dust.</p>
|
* almost certainly be rejected by the network as dust.</p>
|
||||||
*
|
*
|
||||||
* @param broadcaster a {@link TransactionBroadcaster} to use to send the transactions out.
|
* @param broadcaster a {@link TransactionBroadcaster} to use to send the transactions out.
|
||||||
|
Loading…
Reference in New Issue
Block a user