UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

14 lines 537 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * reconsiderblock "blockhash" * * Removes invalidity status of a block, its ancestors and its descendants, reconsider them for activation. * This can be used to undo the effects of invalidateblock. * */ export function reconsiderBlock(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'reconsiderblock', params: methodParams }, bitcoind); } //# sourceMappingURL=reconsider-block.js.map