diff --git a/jmclient/jmclient/schedule.py b/jmclient/jmclient/schedule.py index 4a7316f..b998ccc 100644 --- a/jmclient/jmclient/schedule.py +++ b/jmclient/jmclient/schedule.py @@ -71,9 +71,9 @@ def get_tumble_schedule(options, destaddrs): and zero as sweep (as before). This is a modified version of tumbler.py/generate_tumbler_tx() """ - if options['mixdepthsrc'] != 0: - raise NotImplementedError("Non-zero mixdepth source not supported; " - "restart the tumbler with --restart instead") + #if options['mixdepthsrc'] != 0: + # raise NotImplementedError("Non-zero mixdepth source not supported; " + # "restart the tumbler with --restart instead") def lower_bounded_int(thelist, lowerbound): return [int(l) if int(l) >= lowerbound else lowerbound for l in thelist] diff --git a/scripts/cli_options.py b/scripts/cli_options.py index 1538767..6866929 100644 --- a/scripts/cli_options.py +++ b/scripts/cli_options.py @@ -25,7 +25,7 @@ def get_tumbler_parser(): type='int', dest='mixdepthsrc', help= - 'Mixing depth to spend from. DEPRECATED, do not use.', + 'Mixing depth to start tumble process from. default=0.', default=0) parser.add_option( '-f',