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.
11 lines
353 B
11 lines
353 B
#!/usr/bin/env python3 |
|
|
|
from jmbase import jmprint |
|
from jmclient import YieldGeneratorBasic, ygmain |
|
|
|
# YIELD GENERATOR SETTINGS ARE NOW IN YOUR joinmarket.cfg CONFIG FILE |
|
# (You can also use command line flags; see --help for this script). |
|
|
|
if __name__ == "__main__": |
|
ygmain(YieldGeneratorBasic, nickserv_password='') |
|
jmprint('done', "success")
|
|
|