bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
14 lines (13 loc) • 361 B
TypeScript
import { Bitcoind } from '../../types';
type AbortRescanParams = {
bitcoind: Bitcoind;
};
/**
* abortrescan
*
* Stops current wallet rescan triggered by an RPC call, e.g. by an importprivkey call.
* Note: Use "getwalletinfo" to query the scanning progress.
*
*/
export declare function abortRescan(params: AbortRescanParams): Promise<any>;
export {};