diff --git a/doc/build-osx.md b/doc/build-osx.md index 92e364a437..07ecc782a4 100644 --- a/doc/build-osx.md +++ b/doc/build-osx.md @@ -35,6 +35,17 @@ export PATH=$(echo "$PATH" | sed -e '/\\/!s/ /\\ /g') # fix whitespaces Next, follow the instructions in [build-generic](build-generic.md) +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: + + ./configure --disable-wallet + +In this case there is no dependency on Berkeley DB 4.8. + +Mining is also possible in disable-wallet mode using the `getblocktemplate` RPC call. + Running ------- diff --git a/doc/build-unix.md b/doc/build-unix.md index 1a1432dfa0..7b29f5edd7 100644 --- a/doc/build-unix.md +++ b/doc/build-unix.md @@ -102,8 +102,7 @@ disable-wallet mode with: In this case there is no dependency on Berkeley DB 4.8. -Mining is also possible in disable-wallet mode, but only using the `getblocktemplate` RPC -call not `getwork`. +Mining is also possible in disable-wallet mode using the `getblocktemplate` RPC call. Additional Configure Flags -------------------------- @@ -162,4 +161,4 @@ If your user is in the `staff` group the limit can be raised with: The change will only affect the current shell and processes spawned by it. To make the change system-wide, change `datasize-cur` and `datasize-max` in -`/etc/login.conf`, and reboot. +`/etc/login.conf`, and reboot. \ No newline at end of file