Class 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 TransactionBroadcaster
      com.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.
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • 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