mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 22:24:23 +01:00
Gets rid of sample_confs and add defaults confs
This commit is contained in:
26
teos/conf.py
Normal file
26
teos/conf.py
Normal file
@@ -0,0 +1,26 @@
|
||||
# bitcoind
|
||||
BTC_RPC_USER = "user"
|
||||
BTC_RPC_PASSWD = "passwd"
|
||||
BTC_RPC_HOST = "localhost"
|
||||
BTC_RPC_PORT = 18443
|
||||
BTC_NETWORK = "regtest"
|
||||
|
||||
# ZMQ
|
||||
FEED_PROTOCOL = "tcp"
|
||||
FEED_ADDR = "127.0.0.1"
|
||||
FEED_PORT = 28332
|
||||
|
||||
# TEOS
|
||||
DATA_FOLDER = "~/.teos/"
|
||||
MAX_APPOINTMENTS = 100
|
||||
EXPIRY_DELTA = 6
|
||||
MIN_TO_SELF_DELAY = 20
|
||||
SERVER_LOG_FILE = "teos.log"
|
||||
TEOS_SECRET_KEY = "teos_sk.der"
|
||||
|
||||
# CHAIN MONITOR
|
||||
POLLING_DELTA = 60
|
||||
BLOCK_WINDOW_SIZE = 10
|
||||
|
||||
# LEVELDB
|
||||
DB_PATH = "appointments"
|
||||
Reference in New Issue
Block a user