bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
22 lines (21 loc) • 993 B
JavaScript
;
// Auto synced from github actions. Don't change this file
Object.defineProperty(exports, "__esModule", { value: true });
exports.getTxOutProof = void 0;
var tslib_1 = require("tslib");
var rpc_request_1 = tslib_1.__importDefault(require("../../rpc-request"));
/**
* gettxoutproof ["txid",...] ( "blockhash" )
*
* Returns a hex-encoded proof that "txid" was included in a block.
* NOTE: By default this function only works sometimes. This is when there is an
* unspent output in the utxo for this transaction. To make it always work,
* you need to maintain a transaction index, using the -txindex command line option or
* specify the block in which the transaction is included manually (by blockhash).
*
*/
function getTxOutProof(params) {
var bitcoind = params.bitcoind, methodParams = tslib_1.__rest(params, ["bitcoind"]);
return (0, rpc_request_1.default)({ method: 'gettxoutproof', params: methodParams }, bitcoind);
}
exports.getTxOutProof = getTxOutProof;