From 39b1763730177cd7d6a32fd9321da640b0d65e0e Mon Sep 17 00:00:00 2001 From: Kiminuo Date: Thu, 2 Dec 2021 21:21:05 +0100 Subject: Replace use of `ArgsManager` with `DatabaseOptions` Co-authored-by: Russell Yanofsky --- src/wallet/dump.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src/wallet/dump.h') diff --git a/src/wallet/dump.h b/src/wallet/dump.h index a879c4db35..bf683e9843 100644 --- a/src/wallet/dump.h +++ b/src/wallet/dump.h @@ -11,11 +11,12 @@ #include struct bilingual_str; +class ArgsManager; namespace wallet { class CWallet; -bool DumpWallet(CWallet& wallet, bilingual_str& error); -bool CreateFromDump(const std::string& name, const fs::path& wallet_path, bilingual_str& error, std::vector& warnings); +bool DumpWallet(const ArgsManager& args, CWallet& wallet, bilingual_str& error); +bool CreateFromDump(const ArgsManager& args, const std::string& name, const fs::path& wallet_path, bilingual_str& error, std::vector& warnings); } // namespace wallet #endif // BITCOIN_WALLET_DUMP_H -- cgit v1.2.3