@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
16 lines • 519 B
TypeScript
import { Bitcoind, Json } from '../../types.js';
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 {};
//# sourceMappingURL=import-mempool.d.ts.map