docs - updates readme with feed data

This commit is contained in:
Sergi Delgado Segura
2020-06-09 09:25:07 +02:00
parent 10da7d2a10
commit 6698a1a892
2 changed files with 14 additions and 10 deletions

View File

@@ -2,15 +2,17 @@ def show_usage():
return (
"USAGE: "
"\n\tpython teosd.py [global options]"
"\n\nGLOBAL OPTIONS:"
"\n\t--apibind \t\taddress that teos API will bind to. Defaults to 'localhost' (modifiable in conf file)."
"\n\t--apiport \t\tport that teos API will bind to. Defaults to '9814' (modifiable in conf file)."
"\n\nGLOBAL OPTIONS (all modifiable in conf file):"
"\n\t--apibind \t\taddress that teos API will bind to. Defaults to 'localhost'."
"\n\t--apiport \t\tport that teos API will bind to. Defaults to '9814'."
"\n\t--btcnetwork \t\tNetwork bitcoind is connected to. Either mainnet, testnet or regtest. Defaults to "
"'mainnet' (modifiable in conf file)."
"\n\t--btcrpcuser \t\tbitcoind rpcuser. Defaults to 'user' (modifiable in conf file)."
"\n\t--btcrpcpassword \tbitcoind rpcpassword. Defaults to 'passwd' (modifiable in conf file)."
"\n\t--btcrpcconnect \tbitcoind rpcconnect. Defaults to 'localhost' (modifiable in conf file)."
"\n\t--btcrpcport \t\tbitcoind rpcport. Defaults to '8332' (modifiable in conf file)."
"\n\t--datadir \t\tspecify data directory. Defaults to '~\.teos' (modifiable in conf file)."
"'mainnet'."
"\n\t--btcrpcuser \t\tbitcoind rpcuser. Defaults to 'user'."
"\n\t--btcrpcpassword \tbitcoind rpcpassword. Defaults to 'passwd'."
"\n\t--btcrpcconnect \tbitcoind rpcconnect. Defaults to 'localhost'."
"\n\t--btcrpcport \t\tbitcoind rpcport. Defaults to '8332'."
"\n\t--btcfeedconnect \tbitcoind zmq hostname (for blocks). Defaults to 'localhost'."
"\n\t--btcfeedport \t\tbitcoind zmq port (for blocks). Defaults to '28332'."
"\n\t--datadir \t\tspecify data directory. Defaults to '~\.teos'."
"\n\t-h --help \t\tshows this message."
)