bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
16 lines (15 loc) • 472 B
TypeScript
import { Bitcoind, Json } from '../../types';
type ImportMempoolParams = {
bitcoind: Bitcoind;
filepath: string;
options?: Json;
};
/**
* importmempool "filepath" ( options )
*
* Import a mempool.dat file and attempt to add its contents to the mempool.
* Warning: Importing untrusted files is dangerous, especially if metadata from the file is taken over.
*
*/
export declare function importMempool(params: ImportMempoolParams): Promise<any>;
export {};