From cfa032d0c222e753604d2f66bc2848c2cf5e8141 Mon Sep 17 00:00:00 2001 From: Adam Gibson Date: Wed, 8 Jan 2020 12:44:18 +0000 Subject: [PATCH] bugfix obwatcher options load --- scripts/obwatch/ob-watcher.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/obwatch/ob-watcher.py b/scripts/obwatch/ob-watcher.py index 02a5b59..28a1fbf 100644 --- a/scripts/obwatch/ob-watcher.py +++ b/scripts/obwatch/ob-watcher.py @@ -33,7 +33,8 @@ except: sys.exit(EXIT_FAILURE) from jmbase import get_log -from jmclient import jm_single, load_program_config, calc_cj_fee, get_irc_mchannels +from jmclient import jm_single, load_program_config, calc_cj_fee, \ + get_irc_mchannels, add_base_options from jmdaemon import OrderbookWatch, MessageChannelCollection, IRCMessageChannel #TODO this is only for base58, find a solution for a client without jmbitcoin import jmbitcoin as btc @@ -448,6 +449,7 @@ def main(): parser = OptionParser( usage='usage: %prog [options]', description='Runs a webservice which shows the orderbook.') + add_base_options(parser) parser.add_option('-H', '--host', action='store',