From d194be69d601322a79444e79ffebe475e58e5f77 Mon Sep 17 00:00:00 2001 From: Laxman Acharya Date: Wed, 12 Aug 2026 10:54:00 +0545 Subject: [PATCH] wallet: remove orphaned GetAffectedKeys declaration The definition of GetAffectedKeys() and its only caller were removed in 83af1a3cca ("wallet: Delete LegacySPKM"), but the declaration in scriptpubkeyman.h was left behind. The symbol has had no definition and no callers since then, so drop the leftover declaration. --- src/wallet/scriptpubkeyman.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wallet/scriptpubkeyman.h b/src/wallet/scriptpubkeyman.h index f128fc0a850..79bc5c4280b 100644 --- a/src/wallet/scriptpubkeyman.h +++ b/src/wallet/scriptpubkeyman.h @@ -63,8 +63,6 @@ inline constexpr int64_t UNKNOWN_TIME = std::numeric_limits::max(); //! Default for -keypool inline constexpr unsigned int DEFAULT_KEYPOOL_SIZE = 1000; -std::vector GetAffectedKeys(const CScript& spk, const SigningProvider& provider); - struct WalletDestination { CTxDestination dest;