bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 335 B
TypeScript
import { Bitcoind } from '../../types';
type SetWalletFlagParams = {
bitcoind: Bitcoind;
flag: string;
value?: boolean;
};
/**
* setwalletflag "flag" ( value )
*
* Change the state of the given wallet flag for a wallet.
*
*/
export declare function setWalletFlag(params: SetWalletFlagParams): Promise<any>;
export {};