bitcoin-cli-ts
Version:
Auto-generated Bitcoin client library for bitcoind JSON-RPC API
15 lines (14 loc) • 418 B
TypeScript
import { Bitcoind } from '../../types';
type UpgradeWalletParams = {
bitcoind: Bitcoind;
version?: number;
};
/**
* upgradewallet ( version )
*
* Upgrade the wallet. Upgrades to the latest version if no version number is specified.
* New keys may be generated and a new wallet backup will need to be made.
*
*/
export declare function upgradeWallet(params: UpgradeWalletParams): Promise<any>;
export {};