Browse Source

Schedules now work in joinmarket-qt

Still to do: UI for choosing schedule.
Added config var to prevent querying whether to accept offers
(needed to allow schedule of txs to complete without interaction).
master
Adam Gibson 10 years ago
parent
commit
e37ab31107
No known key found for this signature in database
GPG Key ID: B3AE09F1E9A3197A
  1. 2
      jmclient/jmclient/schedule.py

2
jmclient/jmclient/schedule.py

@ -34,7 +34,7 @@ def get_schedule(filename):
success, errmsg = validate_address(destaddr) success, errmsg = validate_address(destaddr)
if not success: if not success:
return (False, "Invalid address: " + destaddr + "," + errmsg) return (False, "Invalid address: " + destaddr + "," + errmsg)
schedule.append((mixdepth, amount, makercount, destaddr)) schedule.append((mixdepth, amount, makercount, destaddr, waittime))
return (True, schedule) return (True, schedule)
def get_tumble_schedule(options, destaddrs): def get_tumble_schedule(options, destaddrs):

Loading…
Cancel
Save