diff options
author | Andrew Chow <github@achow101.com> | 2022-11-28 17:10:44 -0500 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-02-27 14:14:14 +0000 |
commit | ccc72fecd7287471bf8c3858a4e6c2ddadb64863 (patch) | |
tree | f37aabf85dec091f51e2c51fed6d5736842a94f2 /src/wallet/wallet.h | |
parent | 50dd8b13dfc070b550680617e76eff1c09af3a58 (diff) |
wallet: Be able to unlock the wallet for migration
Since migration reloads the wallet, the wallet will always be locked
unless the passphrase is given. migratewallet can now take the
passphrase in order to unlock the wallet for migration.
Github-Pull: #26595
Rebased-From: 7fd125b27d48e410509f3009e2eb9fa5cd6729dd
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 405e531500..637e9e6d41 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -1006,7 +1006,7 @@ struct MigrationResult { }; //! Do all steps to migrate a legacy wallet to a descriptor wallet -util::Result<MigrationResult> MigrateLegacyToDescriptor(const std::string& wallet_name, WalletContext& context); +util::Result<MigrationResult> MigrateLegacyToDescriptor(const std::string& wallet_name, const SecureString& passphrase, WalletContext& context); } // namespace wallet #endif // BITCOIN_WALLET_WALLET_H |