@vafanassieff/bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines • 591 B
JavaScript
// Auto synced from github actions. Don't change this file
import request from '../../rpc-request.js';
/**
* ping
*
* Requests that a ping be sent to all other nodes, to measure ping time.
* Results provided in getpeerinfo, pingtime and pingwait fields are decimal seconds.
* Ping command is handled in queue with all other commands, so it measures processing backlog, not just network ping.
*
*/
export function ping(params) {
const { bitcoind, ...methodParams } = params;
return request({ method: 'ping', params: methodParams }, bitcoind);
}
//# sourceMappingURL=ping.js.map