You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Merge bitcoin#24600: doc: mention that BDB is for the legacy wallet in build-freebsd.md
b5ba3b5 doc: mention that BDB is for the legacy wallet in build-freebsd.md (fanquake)
Pull request description:
Re-order legacy and descriptor wallet section.
Remove prelude that pointlessly repeats the same info.
Cleanup configure examples.
FreeBSD version of bitcoin#23446.
ACKs for top commit:
shaavan:
ACK b5ba3b5
Tree-SHA512: ed85acee5c1b933b57d038d144768da1c4b1f1cfd441d9191353b82d50af16adb10aabb3b4661dc9aee54405ab3af2b800e39f9973261a041b2cf0db8675b5c4
It is not necessary to build wallet functionality to run dashd or the GUI. To enable legacy wallets, you must install `db5`. To enable [descriptor wallets](https://github.com/dashpay/dash/blob/master/doc/descriptors.md), `sqlite3` is required. Skip `db5` if you intend to *exclusively* use descriptor wallets
35
-
36
-
###### Legacy Wallet Support
37
-
`db5` is required to enable support for legacy wallets. Skip if you don't intend to use legacy wallets
38
-
39
-
```bash
40
-
pkg install db5
41
-
```
33
+
It is not necessary to build wallet functionality to run either `dashd` or `dash-qt`.
42
34
43
35
###### Descriptor Wallet Support
44
36
45
-
`sqlite3` is required to enable support for descriptor wallets. Skip if you don't intend to use descriptor wallets.
37
+
`sqlite3` is required to support [descriptor wallets](descriptors.md).
38
+
Skip if you don't intend to use descriptor wallets.
@@ -95,12 +105,6 @@ This explicitly enables legacy wallet support and disables the GUI. If `sqlite3`
95
105
MAKE=gmake
96
106
```
97
107
98
-
##### Wallet (only SQlite) and GUI Support:
99
-
This explicitly enables the GUI and disables legacy wallet support. If `qt5` is not installed, this will throw an error. If `sqlite3` is installed then descriptor wallet functionality will be built. If `sqlite3` is not installed, then wallet functionality will be disabled.
0 commit comments