bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 431 B
TypeScript
import { Bitcoind } from '../../types';
type ReconsiderBlockParams = {
bitcoind: Bitcoind;
blockhash: string;
};
/**
* 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 declare function reconsiderBlock(params: ReconsiderBlockParams): Promise<any>;
export {};