Package wf.bitcoin.javabitcoindrpcclient
Interface BitcoindRpcClient.RawTransaction.In
-
- All Superinterfaces:
BitcoindRpcClient.TxInput,java.io.Serializable
- Enclosing interface:
- BitcoindRpcClient.RawTransaction
public static interface BitcoindRpcClient.RawTransaction.In extends BitcoindRpcClient.TxInput, java.io.Serializable
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Stringaddress()get the spent address, which is specified in the 'scriptPubKey' in the connected output of this tx PAY ATTENTION This property is only supported by those bitcoind which supports a '-spentindex' option
For more information about 'spentindex', take a look at satoshilabs/bitcoin or bitpay/bitcoinBitcoindRpcClient.RawTransactiongetTransaction()BitcoindRpcClient.RawTransaction.OutgetTransactionOutput()java.util.Map<java.lang.String,java.lang.Object>scriptSig()longsequence()-
Methods inherited from interface wf.bitcoin.javabitcoindrpcclient.BitcoindRpcClient.TxInput
scriptPubKey, txid, vout
-
-
-
-
Method Detail
-
scriptSig
java.util.Map<java.lang.String,java.lang.Object> scriptSig()
-
sequence
long sequence()
-
getTransaction
BitcoindRpcClient.RawTransaction getTransaction()
-
getTransactionOutput
BitcoindRpcClient.RawTransaction.Out getTransactionOutput()
-
address
java.lang.String address()
get the spent address, which is specified in the 'scriptPubKey' in the connected output of this tx PAY ATTENTION This property is only supported by those bitcoind which supports a '-spentindex' option
For more information about 'spentindex', take a look at satoshilabs/bitcoin or bitpay/bitcoin
-
-