diff --git a/src/wallet/CMakeLists.txt b/src/wallet/CMakeLists.txt index 6b726afc9d14d..996e1f2b1714d 100644 --- a/src/wallet/CMakeLists.txt +++ b/src/wallet/CMakeLists.txt @@ -16,6 +16,7 @@ add_library(bitcoin_wallet STATIC EXCLUDE_FROM_ALL interfaces.cpp load.cpp migrate.cpp + migrate_legacy.cpp receive.cpp rpc/addresses.cpp rpc/backup.cpp diff --git a/src/wallet/migrate_legacy.cpp b/src/wallet/migrate_legacy.cpp new file mode 100644 index 0000000000000..7bb80ed82d281 --- /dev/null +++ b/src/wallet/migrate_legacy.cpp @@ -0,0 +1,818 @@ +// Copyright (c) 2019-2025 The Bitcoin Core developers +// Distributed under the MIT software license, see the accompanying +// file COPYING or http://www.opensource.org/licenses/mit-license.php. + +#include +#include +#include +#include +#include