Skip to content

Commit 23260ab

Browse files
committed
FAQ: add note on wallet.dat
1 parent 3b47666 commit 23260ab

1 file changed

Lines changed: 21 additions & 1 deletion

File tree

FAQ.md

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,16 +138,33 @@ The default password is: `raspberry`
138138
`$ nano /home/joinmarket/.ssh/authorized_keys`
139139
140140
### Activate the bitcoind wallet on a RaspiBlitz
141+
142+
Since the RaspiBlitz v1.6 run this script:
143+
`$ config.scripts/network.wallet.sh on`
144+
145+
To set up manually:
146+
141147
* Edit the bitcoin.conf:
142148
`$ sudo nano /mnt/hdd/bitcoin/bitcoin.conf`
143149
144150
* Change the disablewallet option to 0:
145151
```
146152
disablewallet=0
147153
```
154+
* Specify the wallet to be used:
155+
```
156+
main.wallet=wallet.dat
157+
```
158+
The default setting in JoininBox is to use the `wallet.dat`.
159+
It needs to specified in the `bitcoin.conf` because otherwise when other applications (like Specter) add bitcoind wallets JoinMarket would stop working.
160+
148161
* Restart bitcoind:
149162
`$ sudo systemctl restart bitcoind`
150163
164+
165+
166+
167+
151168
### Error when connecting to a full node remotely through Tor
152169
* Getting the error:
153170
```
@@ -172,6 +189,9 @@ daemon=1
172189
txindex=1
173190
disablewallet=0
174191

192+
main.wallet=wallet.dat
193+
datadir=/mnt/hdd/bitcoin
194+
175195
# Connection settings
176196
rpcuser=REDACTED
177197
rpcpassword=REDACTED
@@ -191,7 +211,7 @@ maxmempool=300
191211
maxconnections=40
192212
maxuploadtarget=5000
193213

194-
datadir=/mnt/hdd/bitcoin
214+
# Tor
195215
onlynet=onion
196216
proxy=127.0.0.1:9050
197217
main.bind=127.0.0.1

0 commit comments

Comments
 (0)