UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 425 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * savemempool * * Dumps the mempool to disk. It will fail until the previous dump is fully loaded. * */ export function saveMempool(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'savemempool', params: methodParams }, bitcoind); } //# sourceMappingURL=save-mempool.js.map