[rpc] [fixup] AsyncRPCOperation_*: Remove from Makefile.am (instead of undef)

This commit is contained in:
Jon Layton 2018-07-14 23:50:14 -05:00
parent 3bf7e8586f
commit 5ed974b084
7 changed files with 6 additions and 18 deletions

View File

@ -201,9 +201,6 @@ BITCOIN_CORE_H = \
validationinterface.h \
versionbits.h \
walletinitinterface.h \
wallet/asyncrpcoperation_mergetoaddress.h \
wallet/asyncrpcoperation_sendmany.h \
wallet/asyncrpcoperation_shieldcoinbase.h \
wallet/coincontrol.h \
wallet/crypter.h \
wallet/db.h \
@ -293,9 +290,6 @@ libbitcoin_wallet_a_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
libbitcoin_wallet_a_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
libbitcoin_wallet_a_SOURCES = \
interfaces/wallet.cpp \
wallet/asyncrpcoperation_mergetoaddress.cpp \
wallet/asyncrpcoperation_sendmany.cpp \
wallet/asyncrpcoperation_shieldcoinbase.cpp \
wallet/crypter.cpp \
wallet/db.cpp \
wallet/feebumper.cpp \

View File

@ -33,7 +33,7 @@
#include <thread>
using namespace libzcash;
#if 0
int mta_find_output(UniValue obj, int n)
{
UniValue outputMapValue = find_value(obj, "outputmap");
@ -956,4 +956,3 @@ void AsyncRPCOperation_mergetoaddress::unlock_notes() {
pwalletMain->UnlockNote(std::get<0>(note));
}
}
#endif

View File

@ -21,7 +21,7 @@
// Default transaction fee if caller does not specify one.
#define MERGE_TO_ADDRESS_OPERATION_DEFAULT_MINERS_FEE 10000
#if 0
using namespace libzcash;
// Input UTXO is a tuple of txid, vout, amount
@ -191,4 +191,3 @@ public:
#endif /* ASYNCRPCOPERATION_MERGETOADDRESS_H */
#endif

View File

@ -31,7 +31,7 @@
#include <string>
using namespace libzcash;
#if 0
int find_output(UniValue obj, int n) {
UniValue outputMapValue = find_value(obj, "outputmap");
if (!outputMapValue.isArray()) {
@ -1170,4 +1170,3 @@ UniValue AsyncRPCOperation_sendmany::getStatus() const {
obj.push_back(Pair("params", contextinfo_ ));
return obj;
}
#endif

View File

@ -21,7 +21,7 @@
// Default transaction fee if caller does not specify one.
#define ASYNC_RPC_OPERATION_DEFAULT_MINERS_FEE 10000
#if 0
using namespace libzcash;
// A recipient is a tuple of address, amount, memo (optional if zaddr)
@ -190,4 +190,3 @@ public:
#endif /* ASYNCRPCOPERATION_SENDMANY_H */
#endif

View File

@ -32,7 +32,7 @@
using namespace libzcash;
#if 0
static int find_output(UniValue obj, int n) {
UniValue outputMapValue = find_value(obj, "outputmap");
if (!outputMapValue.isArray()) {
@ -499,4 +499,3 @@ void AsyncRPCOperation_shieldcoinbase::unlock_utxos() {
pwalletMain->UnlockCoin(outpt);
}
}
#endif

View File

@ -24,7 +24,7 @@
#define SHIELD_COINBASE_DEFAULT_MINERS_FEE 10000
using namespace libzcash;
#if 0
struct ShieldCoinbaseUTXO {
uint256 txid;
int vout;
@ -126,4 +126,3 @@ public:
#endif /* ASYNCRPCOPERATION_SHIELDCOINBASE_H */
#endif