File tree Expand file tree Collapse file tree 1 file changed +8
-16
lines changed Expand file tree Collapse file tree 1 file changed +8
-16
lines changed Original file line number Diff line number Diff line change @@ -68,29 +68,21 @@ git clone https://github.com/bitcoin/bitcoin.git
68
68
#### Wallet Dependencies
69
69
70
70
It is not necessary to build wallet functionality to run ` bitcoind ` or ` bitcoin-qt ` .
71
- To enable legacy wallets, you must install ` berkeley-db@4 ` .
72
- To enable [ descriptor wallets] ( https://github.com/bitcoin/bitcoin/blob/master/doc/descriptors.md ) , ` sqlite ` is required.
73
- Skip ` berkeley-db@4 ` if you intend to * exclusively* use descriptor wallets.
74
71
75
- ###### Legacy Wallet Support
72
+ ###### Descriptor Wallet Support
76
73
77
- ` berkeley-db@4 ` is required to enable support for legacy wallets.
78
- Skip if you don't intend to use legacy wallets.
74
+ ` sqlite ` is required to support for descriptor wallets.
79
75
80
- ``` bash
81
- brew install berkeley-db@4
82
- ```
76
+ macOS ships with a useable ` sqlite ` package, meaning you don't need to
77
+ install anything.
83
78
84
- ###### Descriptor Wallet Support
85
-
86
- Note: Apple has included a useable ` sqlite ` package since macOS 10.14.
87
- You may not need to install this package.
79
+ ###### Legacy Wallet Support
88
80
89
- ` sqlite ` is required to enable support for descriptor wallets.
90
- Skip if you don't intend to use descriptor wallets.
81
+ ` berkeley-db@4 ` is only required to support for legacy wallets.
82
+ Skip if you don't intend to use legacy wallets.
91
83
92
84
``` bash
93
- brew install sqlite
85
+ brew install berkeley-db@4
94
86
```
95
87
---
96
88
You can’t perform that action at this time.
0 commit comments