|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Transaction | |
---|---|
com.google.bitcoin.core |
Uses of Transaction in com.google.bitcoin.core |
---|
Methods in com.google.bitcoin.core that return Transaction | |
---|---|
Transaction |
Wallet.sendCoins(Peer peer,
Address to,
BigInteger nanocoins)
Sends coins to the given address, via the given Peer . |
Methods in com.google.bitcoin.core that return types with arguments of type Transaction | |
---|---|
Collection<Transaction> |
Wallet.getPendingTransactions()
Returns an immutable view of the transactions currently waiting for network confirmations. |
Methods in com.google.bitcoin.core with parameters of type Transaction | |
---|---|
void |
WalletEventListener.onCoinsReceived(Wallet wallet,
Transaction tx,
BigInteger prevBalance,
BigInteger newBalance)
This is called on a Peer thread when a block is received that sends some coins to you. |
void |
WalletEventListener.onDeadTransaction(Transaction deadTx,
Transaction replacementTx)
This is called on a Peer thread when a transaction becomes dead. |
boolean |
Script.run(Transaction context)
Runs the script with the given Transaction as the "context". |
boolean |
Transaction.verifyInput(int inputIndex,
Transaction connectedTx)
Given a named input and the transaction output it connects to, runs the script formed from the concatenation of the input and output scripts, returning true if the link is valid. |
Constructors in com.google.bitcoin.core with parameters of type Transaction | |
---|---|
TransactionInput(NetworkParameters params,
Transaction parentTransaction,
byte[] payload,
int offset)
Deserializes an input message. |
|
TransactionOutput(NetworkParameters params,
Transaction parent,
byte[] payload,
int offset)
Deserializes a transaction output message. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |