http://mmgen55rtcahqfp2hn3v7syqv2wqanks5oeezqg3ykwfkebmouzjxlad.onion/project/mmgen/mmgen-node-tools/commit/e7fcc00b95a9631b26d2e2c9d6cda23103958fe7
Retry in {timeout-elapsed} seconds' + + ('' if cfg.btc_only else ', or use --cached-data or --btc') + ) + + if not os.path.exists(cachedir): + os.makedirs(cachedir) + + if cfg.btc_only: + fn = os.path.join(cfg.cachedir,'ticker-btc.json') + timeout = 5 if g.test_suite else btc_ratelimit + else: + fn = os.path.join(cfg.cachedir,'ticker.json') + timeout = 5 if g.test_suite else ratelimit + + fn_rel = os.path.relpath(fn,start=homedir) + + if not os.path.exists(fn): + open(fn,'w').write('{}') + + if...