diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-11-30 06:09:32 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2013-12-04 12:46:13 +0100 |
commit | 829c9203874277265613185c73f96760ae4b9356 (patch) | |
tree | 5df689e450592e2e0636662c4d613fda9e6b063e /src/Makefile.am | |
parent | ae6ea5a6fa4a674fc1c989df6f4ec945df1aa534 (diff) |
Move CCryptoKeyStore to crypter.cpp
This breaks the dependency on crypter for disable-wallet builds.
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 5daf625695..89879d5cd8 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -39,7 +39,6 @@ version.o: obj/build.h libbitcoin_server_a_SOURCES = \ addrman.cpp \ alert.cpp \ - crypter.cpp \ rpcserver.cpp \ bloom.cpp \ chainparams.cpp \ @@ -61,6 +60,7 @@ libbitcoin_server_a_SOURCES = \ libbitcoin_wallet_a_SOURCES = \ db.cpp \ + crypter.cpp \ miner.cpp \ rpcdump.cpp \ rpcmining.cpp \ |