diff options
author | fanquake <fanquake@gmail.com> | 2022-03-18 10:27:49 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2022-03-18 10:27:49 +0000 |
commit | 307215b6c5e4a4689fabb37f246a410767c8a3f4 (patch) | |
tree | 0396e3ece227d07c7abbb21b33151d37200b7ee9 /doc/build-unix.md | |
parent | a17df4e876f9a24b4c24023b9346d2392db53c4d (diff) |
doc: clarify that BDB is only required for the legacy wallet
Diffstat (limited to 'doc/build-unix.md')
-rw-r--r-- | doc/build-unix.md | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/build-unix.md b/doc/build-unix.md index e56c78b0b7..f02729ee32 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -209,7 +209,7 @@ from the root of the repository. Otherwise, you can build Bitcoin Core from self-compiled [depends](/depends/README.md). -**Note**: You only need Berkeley DB if the wallet is enabled (see [*Disable-wallet mode*](#disable-wallet-mode)). +**Note**: You only need Berkeley DB if the legacy wallet is enabled (see [*Disable-wallet mode*](#disable-wallet-mode)). Security -------- @@ -259,12 +259,12 @@ Hardening enables the following features: Disable-wallet mode -------------------- -When the intention is to run only a P2P node without a wallet, Bitcoin Core may be compiled in -disable-wallet mode with: +When the intention is to only run a P2P node, without a wallet, Bitcoin Core can +be compiled in disable-wallet mode with: ./configure --disable-wallet -In this case there is no dependency on Berkeley DB 4.8 and SQLite. +In this case there is no dependency on SQLite or Berkeley DB. Mining is also possible in disable-wallet mode using the `getblocktemplate` RPC call. |