Post
Topic
Board Bitcoin Technical Support
Merits 4 from 1 user
Re: Two Node Questions: (1) BTC Core + Bisq, (2) RPC and Bisq Full Node
by
ETFbitcoin
on 08/05/2022, 11:26:30 UTC
⭐ Merited by Welsh (4)
So I want to use the console to write these configurations to the bitcoin.conf file: (a) peerbloomfilters=1 and (b) prune=0    I have searched  and I cannot find the syntax
You just write the two things into the file, one per line. You can see my Bitcoin Core config here in step 6 when it comes to the syntax / format of this file. Though I obviously don't have the bloomfilters setting that seems to be required for Bisq.

I just tried Jameson Lopp's config generator[1] and found out where it should be located[2]. Prune is disabled by default, so there's no need to add prune=0 manually.

Code:
# Generated by https://jlopp.github.io/bitcoin-core-config-generator/

# This config should be placed in following path:
# ~/.bitcoin/bitcoin.conf

# [network]
# Support filtering of blocks and transactions with bloom filters.
peerbloomfilters=1


# [Sections]
# Most options automatically apply to mainnet, testnet, and regtest networks.
# If you want to confine an option to just one network, you should add it in the relevant section.
# EXCEPTIONS: The options addnode, connect, port, bind, rpcport, rpcbind and wallet
# only apply to mainnet unless they appear in the appropriate section below.

# Options only for mainnet
[main]

# Options only for testnet
[test]

# Options only for regtest
[regtest]

[1] https://jlopp.github.io/bitcoin-core-config-generator
[2] https://jlopp.github.io/bitcoin-core-config-generator/#config=eyJuZXR3b3JrIjp7InBlZXJibG9vbWZpbHRlcnMiOjF9fQ==