From da58e559865e128ca47571645a7d0e60f9caf317 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Thu, 6 Aug 2026 12:20:24 +0100 Subject: [PATCH] test, refactor: Remove unused `warnings` in `wallet/test/util.cpp` These have been unused since the following commits: - c61d3f02f5122b38ea8bf0029aa9dfbbf38e10d0 - e12ff8aca049ec7b054cb3047a167c7ce8dbd421 --- src/wallet/test/util.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/wallet/test/util.cpp b/src/wallet/test/util.cpp index 19281be63bd..f51f11492d7 100644 --- a/src/wallet/test/util.cpp +++ b/src/wallet/test/util.cpp @@ -67,7 +67,6 @@ std::shared_ptr TestCreateWallet(WalletContext& context) options.create_flags = WALLET_FLAG_DESCRIPTORS; DatabaseStatus status; bilingual_str error; - std::vector warnings; auto database = MakeWalletDatabase("", options, status, error); return TestCreateWallet(std::move(database), context, options.create_flags); } @@ -91,7 +90,6 @@ std::shared_ptr TestLoadWallet(WalletContext& context) options.require_existing = true; DatabaseStatus status; bilingual_str error; - std::vector warnings; auto database = MakeWalletDatabase("", options, status, error); return TestLoadWallet(std::move(database), context); }