Uses of Class
com.google.bitcoin.core.TransactionInput

Packages that use TransactionInput
com.google.bitcoin.core   
 

Uses of TransactionInput in com.google.bitcoin.core
 

Methods in com.google.bitcoin.core that return TransactionInput
 TransactionInput Transaction.addInput(TransactionInput input)
          Adds an input directly, with no checking that it's valid.
 TransactionInput Transaction.addInput(TransactionOutput from)
          Adds an input to this transaction that imports value from the given output.
 TransactionInput Transaction.addSignedInput(TransactionOutPoint prevOut, Script scriptPubKey, ECKey sigKey)
          Same as Transaction.addSignedInput(TransactionOutPoint, com.google.bitcoin.script.Script, ECKey, com.google.bitcoin.core.Transaction.SigHash, boolean) but defaults to Transaction.SigHash.ALL and "false" for the anyoneCanPay flag.
 TransactionInput Transaction.addSignedInput(TransactionOutPoint prevOut, Script scriptPubKey, ECKey sigKey, Transaction.SigHash sigHash, boolean anyoneCanPay)
          Adds a new and fully signed input for the given parameters.
 TransactionInput Transaction.getInput(int index)
           
 TransactionInput TransactionOutput.getSpentBy()
          Returns the connected input.
 

Methods in com.google.bitcoin.core that return types with arguments of type TransactionInput
 List<TransactionInput> Transaction.getInputs()
          Returns an unmodifiable view of all inputs.
 

Methods in com.google.bitcoin.core with parameters of type TransactionInput
 TransactionInput Transaction.addInput(TransactionInput input)
          Adds an input directly, with no checking that it's valid.
 void TransactionOutput.markAsSpent(TransactionInput input)
          Sets this objects availableForSpending flag to false and the spentBy pointer to the given input.
 



Copyright © 2014. All rights reserved.