Java 类org.bitcoinj.core.StoredTransactionOutput 实例源码

项目:coinj-dash    文件:VerificationInputContext.java   
VerificationInputContext(StoredTransactionOutput storedTxOut) {
    this.storedTxOut = storedTxOut;
}
项目:namecoinj    文件:FullPrunedBlockStore.java   
/**
 * Gets a {@link StoredTransactionOutput} with the given hash and index, or null if none is found
 */
StoredTransactionOutput getTransactionOutput(Sha256Hash hash, long index) throws BlockStoreException;
项目:namecoinj    文件:FullPrunedBlockStore.java   
/**
 * Adds a {@link StoredTransactionOutput} to the list of unspent TransactionOutputs
 */
void addUnspentTransactionOutput(StoredTransactionOutput out) throws BlockStoreException;
项目:namecoinj    文件:FullPrunedBlockStore.java   
/**
 * Removes a {@link StoredTransactionOutput} from the list of unspent TransactionOutputs
 * Note that the coinbase of the genesis block should NEVER be spendable and thus never in the list.
 * @throws BlockStoreException if there is an underlying storage issue, or out was not in the list.
 */
void removeUnspentTransactionOutput(StoredTransactionOutput out) throws BlockStoreException;
项目:CoinJoin    文件:FullPrunedBlockStore.java   
/**
 * Gets a {@link StoredTransactionOutput} with the given hash and index, or null if none is found
 */
StoredTransactionOutput getTransactionOutput(Sha256Hash hash, long index) throws BlockStoreException;
项目:CoinJoin    文件:FullPrunedBlockStore.java   
/**
 * Adds a {@link StoredTransactionOutput} to the list of unspent TransactionOutputs
 */
void addUnspentTransactionOutput(StoredTransactionOutput out) throws BlockStoreException;
项目:CoinJoin    文件:FullPrunedBlockStore.java   
/**
 * Removes a {@link StoredTransactionOutput} from the list of unspent TransactionOutputs
 * Note that the coinbase of the genesis block should NEVER be spendable and thus never in the list.
 * @throws BlockStoreException if there is an underlying storage issue, or out was not in the list.
 */
void removeUnspentTransactionOutput(StoredTransactionOutput out) throws BlockStoreException;
项目:digibytej-alice    文件:FullPrunedBlockStore.java   
/**
 * Gets a {@link StoredTransactionOutput} with the given hash and index, or null if none is found
 */
StoredTransactionOutput getTransactionOutput(Sha256Hash hash, long index) throws BlockStoreException;
项目:digibytej-alice    文件:FullPrunedBlockStore.java   
/**
 * Adds a {@link StoredTransactionOutput} to the list of unspent TransactionOutputs
 */
void addUnspentTransactionOutput(StoredTransactionOutput out) throws BlockStoreException;
项目:digibytej-alice    文件:FullPrunedBlockStore.java   
/**
 * Removes a {@link StoredTransactionOutput} from the list of unspent TransactionOutputs
 * Note that the coinbase of the genesis block should NEVER be spendable and thus never in the list.
 * @throws BlockStoreException if there is an underlying storage issue, or out was not in the list.
 */
void removeUnspentTransactionOutput(StoredTransactionOutput out) throws BlockStoreException;