def __init__(self):
     self.block_height = 0
     self.prev_hash = 0
 
     # Send out the e-mail saying we are starting.
     notify_email = lib.notify_email.NOTIFY_EMAIL()
     notify_email.notify_start()
 def __init__(self):
     self.block_height = 0
     self.prev_hash = 0
 
     # Send out the e-mail saying we are starting.
     notify_email = lib.notify_email.NOTIFY_EMAIL()
     notify_email.notify_start()
Example #3
0
    def __init__(self):
        # Fire deferred when manager is ready
        self.on_load = defer.Deferred()
        self.on_load.callback(True)
        self.block_height = 0
        self.prev_hash = 0

        # Send out the e-mail saying we are starting.
        notify_email = lib.notify_email.NOTIFY_EMAIL()
        notify_email.notify_start()
    def __init__(self):
        # Fire deferred when manager is ready
        self.on_load = defer.Deferred()
        self.on_load.callback(True)
	self.block_height = 0
	self.prev_hash = 0
    
	# Send out the e-mail saying we are starting.
    	notify_email = lib.notify_email.NOTIFY_EMAIL()
   	notify_email.notify_start()