You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
765 B
26 lines
765 B
#! /usr/bin/env python |
|
from __future__ import (absolute_import, division, |
|
print_function, unicode_literals) |
|
from builtins import * # noqa: F401 |
|
|
|
from jmbase import get_log, jmprint |
|
from jmclient import YieldGeneratorBasic, ygmain |
|
|
|
"""THESE SETTINGS CAN SIMPLY BE EDITED BY HAND IN THIS FILE: |
|
""" |
|
txfee = 100 |
|
cjfee_a = 500 |
|
cjfee_r = '0.00002' |
|
ordertype = 'swreloffer' #'swreloffer' or 'swabsoffer' |
|
nickserv_password = '' |
|
max_minsize = 100000 |
|
gaplimit = 6 |
|
|
|
jlog = get_log() |
|
|
|
if __name__ == "__main__": |
|
ygmain(YieldGeneratorBasic, txfee=txfee, cjfee_a=cjfee_a, |
|
cjfee_r=cjfee_r, ordertype=ordertype, |
|
nickserv_password=nickserv_password, |
|
minsize=max_minsize, gaplimit=gaplimit) |
|
jmprint('done', "success")
|
|
|