def __init__(self, msgchan, wallet, send_jobs, options, waittime): self.send_jobs = send_jobs self.job_index = 0 self.options = options self.waittime = waittime Maker.__init__(self, msgchan, wallet) Taker.__init__(self, msgchan)
def __init__(self, msgchan, wallet, destaddr, amount, makercount, txfee, cjfee, waittime, mixdepth): self.destaddr = destaddr self.amount = amount self.makercount = makercount self.txfee = txfee self.cjfee = cjfee self.waittime = waittime self.mixdepth = mixdepth Maker.__init__(self, msgchan, wallet) Taker.__init__(self, msgchan)
def __init__(self, msgchan, wallet): Maker.__init__(self, msgchan, wallet) self.msgchan.register_channel_callbacks(self.on_welcome, self.on_set_topic, None, None, self.on_nick_leave, None) self.tx_unconfirm_timestamp = {}