Package org.bitcoinj.wallet
Class Wallet.SendResult
- java.lang.Object
-
- org.bitcoinj.wallet.Wallet.SendResult
-
- Enclosing class:
- Wallet
public static class Wallet.SendResult extends java.lang.Object
A SendResult is returned to you as part of sending coins to a recipient.
-
-
Field Summary
Fields Modifier and Type Field Description TransactionBroadcast
broadcast
The broadcast object returned by the linked TransactionBroadcastercom.google.common.util.concurrent.ListenableFuture<Transaction>
broadcastComplete
A future that will complete once the tx message has been successfully broadcast to the network.Transaction
tx
The Bitcoin transaction message that moves the money.
-
Constructor Summary
Constructors Constructor Description SendResult(Transaction tx, TransactionBroadcast broadcast)
-
-
-
Field Detail
-
tx
public final Transaction tx
The Bitcoin transaction message that moves the money.
-
broadcastComplete
public final com.google.common.util.concurrent.ListenableFuture<Transaction> broadcastComplete
A future that will complete once the tx message has been successfully broadcast to the network. This is just the result of calling broadcast.future()
-
broadcast
public final TransactionBroadcast broadcast
The broadcast object returned by the linked TransactionBroadcaster
-
-
Constructor Detail
-
SendResult
public SendResult(Transaction tx, TransactionBroadcast broadcast)
-
-