forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge bitcoin#14168: Remove ENABLE_WALLET from libbitcoin_server.a
7d038dc [build] remove ENABLE_WALLET ifdef from httprpc.cpp (John Newbery) 3076556 [build] Move dummy wallet into its own .cpp file. (John Newbery) Pull request description: This removes the final instances of ENABLE_WALLET in libbitcoin_server and so completes bitcoin#7965. Tree-SHA512: a49128b7c17f4f69940d5843e6b785f08687efb377b5157d5b267d1205e596eb5c1966f1afb8ab36bcc2491c46252099e3e844c91f5623da8ded2e358d46338d
- Loading branch information
Showing
7 changed files
with
51 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
// Copyright (c) 2018 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 <stdio.h> | ||
#include <util.h> | ||
#include <walletinitinterface.h> | ||
|
||
class DummyWalletInit : public WalletInitInterface { | ||
public: | ||
|
||
bool HasWalletSupport() const override {return false;} | ||
void AddWalletOptions() const override; | ||
bool ParameterInteraction() const override {return true;} | ||
void RegisterRPC(CRPCTable &) const override {} | ||
bool Verify() const override {return true;} | ||
bool Open() const override {LogPrintf("No wallet support compiled in!\n"); return true;} | ||
void Start(CScheduler& scheduler) const override {} | ||
void Flush() const override {} | ||
void Stop() const override {} | ||
void Close() const override {} | ||
}; | ||
|
||
void DummyWalletInit::AddWalletOptions() const | ||
{ | ||
std::vector<std::string> opts = {"-addresstype", "-changetype", "-disablewallet", "-discardfee=<amt>", "-fallbackfee=<amt>", | ||
"-keypool=<n>", "-mintxfee=<amt>", "-paytxfee=<amt>", "-rescan", "-salvagewallet", "-spendzeroconfchange", "-txconfirmtarget=<n>", | ||
"-upgradewallet", "-wallet=<path>", "-walletbroadcast", "-walletdir=<dir>", "-walletnotify=<cmd>", "-walletrbf", "-zapwallettxes=<mode>", | ||
"-dblogsize=<n>", "-flushwallet", "-privdb", "-walletrejectlongchains"}; | ||
gArgs.AddHiddenArgs(opts); | ||
} | ||
|
||
const WalletInitInterface& g_wallet_init_interface = DummyWalletInit(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters