UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

Auto-generated Bitcoin client library for bitcoind JSON-RPC API

13 lines 536 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * removeprunedfunds "txid" * * Deletes the specified transaction from the wallet. Meant for use with pruned wallets and as a companion to importprunedfunds. This will affect wallet balances. * */ export function removePrunedFunds(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'removeprunedfunds', params: methodParams }, bitcoind); } //# sourceMappingURL=remove-pruned-funds.js.map