Skip to content

Commit 5b8990a

Browse files
committed
Merge bitcoin#29388: fuzz: remove unused args and context from FuzzedWallet
b14298c fuzz: remove unused `args` and `context` from `FuzzedWallet` (brunoerg) Pull request description: `ArgsManager args` and `WalletContext context` were previously used to create the wallet into `FuzzedWallet`. After fa15861, they are not used anymore. This PR removes them. ACKs for top commit: maflcko: lgtm ACK b14298c epiccurious: utACK b14298c ryanofsky: Code review ACK b14298c Tree-SHA512: 164e6a66ba05e11176a0cf68db6257f0ac07459cf7aa01ec4302b303c156c205a68128373a0b8daba0a6dfbff990af7fa14465a6341a296312fb20ea778c7a8c
2 parents 592e013 + b14298c commit 5b8990a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

src/wallet/test/fuzz/notifications.cpp

-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
44

55
#include <addresstype.h>
6-
#include <common/args.h>
76
#include <consensus/amount.h>
87
#include <interfaces/chain.h>
98
#include <kernel/chain.h>
@@ -89,8 +88,6 @@ void ImportDescriptors(CWallet& wallet, const std::string& seed_insecure)
8988
* Wraps a descriptor wallet for fuzzing.
9089
*/
9190
struct FuzzedWallet {
92-
ArgsManager args;
93-
WalletContext context;
9491
std::shared_ptr<CWallet> wallet;
9592
FuzzedWallet(const std::string& name, const std::string& seed_insecure)
9693
{

0 commit comments

Comments
 (0)