diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-12-08 15:26:08 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-09 08:44:57 +0100 |
| commit | 4a85e067502a5df340e1b8c49df21e4c30a0de68 (patch) | |
| tree | e036991e5f02c9d5017e9230cceace4433f1d297 /src/Makefile.am | |
| parent | Merge pull request #3348 (diff) | |
| download | discoin-4a85e067502a5df340e1b8c49df21e4c30a0de68.tar.xz discoin-4a85e067502a5df340e1b8c49df21e4c30a0de68.zip | |
Allow mining RPCs with --disable-wallet
The following mining-related RPC calls don't use the wallet:
- getnetworkhashps
- getmininginfo
- getblocktemplate
- submitblock
Enable them when compiling with --disable-wallet.
Diffstat (limited to 'src/Makefile.am')
| -rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index df4087c31..62dd63abe 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -48,9 +48,11 @@ libbitcoin_server_a_SOURCES = \ keystore.cpp \ leveldbwrapper.cpp \ main.cpp \ + miner.cpp \ net.cpp \ noui.cpp \ rpcblockchain.cpp \ + rpcmining.cpp \ rpcnet.cpp \ rpcrawtransaction.cpp \ txdb.cpp \ @@ -61,9 +63,7 @@ libbitcoin_server_a_SOURCES = \ libbitcoin_wallet_a_SOURCES = \ db.cpp \ crypter.cpp \ - miner.cpp \ rpcdump.cpp \ - rpcmining.cpp \ rpcwallet.cpp \ wallet.cpp \ walletdb.cpp \ |