-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathparser.conf.example
More file actions
34 lines (28 loc) · 843 Bytes
/
parser.conf.example
File metadata and controls
34 lines (28 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Example configuration file
# Change the default database adapter at the top
# Adapter will default to sqlite if nothing is specified
# Available options are sqlite, postgres and mysql
adapter = sqlite
# You can set RPC settings here as well
#[RPC]
#username = paycoinrpc
#password = password
#host = 127.0.0.1
#port = 9001
# PostgreSQL and MySQL require additional settings
# Set them under a tag containing their name
#[postgres]
#username = paycoindb
#password = paycoin
#host = localhost
#database = XPYBlockchain
#[mysql]
#username = paycoindb
#password = paycoin
#host = localhost
#database = XPYBlockchain
# SQLite will allow you to specify an exact path to save your blockchain file
# Make sure to include the database name in the path
#[sqlite]
#path = '../XPYBlockchain.sqlite'
#pathtestnet = '../XPYBlockchainTestnet.sqlite'