diff options
author | Russell Yanofsky <russ@yanofsky.org> | 2018-04-08 14:37:50 -0400 |
---|---|---|
committer | Russell Yanofsky <russ@yanofsky.org> | 2019-02-22 15:43:02 -0400 |
commit | 1106a6fde4bfde31a16de45e4cc84ed5da05c5a4 (patch) | |
tree | 7d8168d42ef198f19f5f200833d22c77a6b0c86d /src/Makefile.bench.include | |
parent | 318f41fb2cae0a46b4e4be49156562b8ed640f0c (diff) |
Remove use of uiInterface.LoadWallet in wallet code
This also changes the uiInterface.LoadWallet signal argument type from
shared_ptr<CWallet> to unique_ptr<interfaces::Wallet> because CWallet is an
internal wallet class that shouldn't be used in non-wallet code (and also can't
be passed across process boundaries).
This commit does not change behavior.
Diffstat (limited to 'src/Makefile.bench.include')
-rw-r--r-- | src/Makefile.bench.include | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/Makefile.bench.include b/src/Makefile.bench.include index 829e644643..77fb416b9c 100644 --- a/src/Makefile.bench.include +++ b/src/Makefile.bench.include @@ -39,8 +39,6 @@ bench_bench_bitcoin_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) bench_bench_bitcoin_LDADD = \ $(LIBBITCOIN_WALLET) \ $(LIBBITCOIN_SERVER) \ - $(LIBBITCOIN_WALLET) \ - $(LIBBITCOIN_SERVER) \ $(LIBBITCOIN_COMMON) \ $(LIBBITCOIN_UTIL) \ $(LIBBITCOIN_CONSENSUS) \ |