bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 435 B
TypeScript
import { Bitcoind } from '../../types';
type WalletLockParams = {
bitcoind: Bitcoind;
};
/**
* walletlock
*
* Removes the wallet encryption key from memory, locking the wallet.
* After calling this method, you will need to call walletpassphrase again
* before being able to call any methods which require the wallet to be unlocked.
*
*/
export declare function walletLock(params: WalletLockParams): Promise<any>;
export {};