UNPKG

@vafanassieff/bitcoin-cli-ts

Version:

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

13 lines 426 B
// Auto synced from github actions. Don't change this file import request from '../../rpc-request.js'; /** * setwalletflag "flag" ( value ) * * Change the state of the given wallet flag for a wallet. * */ export function setWalletFlag(params) { const { bitcoind, ...methodParams } = params; return request({ method: 'setwalletflag', params: methodParams }, bitcoind); } //# sourceMappingURL=set-wallet-flag.js.map