2017-09-27 05:30:09 +00:00
|
|
|
# Copyright (c) 2014-2017 esotericnonsense (Daniel Edgecumbe)
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or https://opensource.org/licenses/mit-license.php
|
|
|
|
|
|
|
|
VERSION_STRING = "bitcoind-ncurses v0.2.0-dev"
|
|
|
|
|
|
|
|
# MODES = [
|
|
|
|
# "monitor", "wallet", "peers", "block",
|
|
|
|
# "tx", "console", "net", "forks",
|
|
|
|
# ]
|
2017-10-01 01:57:56 +00:00
|
|
|
MODES = ["monitor", "peers", "block", "transaction", "net"]
|
|
|
|
DEFAULT_MODE = "monitor"
|
2017-09-30 20:41:01 +00:00
|
|
|
|
|
|
|
# TX_VERBOSE_MODE controls whether the prevouts for an input are fetched.
|
2017-10-01 01:57:56 +00:00
|
|
|
# TX_VERBOSE_MODE = True
|
2017-09-30 20:41:01 +00:00
|
|
|
TX_VERBOSE_MODE = False
|
2017-09-27 16:18:09 +00:00
|
|
|
|
|
|
|
MIN_WINDOW_SIZE = (10, 20)
|