Added Notification Code

This commit is contained in:
Ahmed Bodiwala 2013-11-21 18:01:10 +00:00
parent fb6ce0187a
commit 716407e950

View File

@ -23,6 +23,20 @@ else:
print("########################################### NOT Loading LTC Scrypt Module ######################################################")
pass
if settings.COINDAEMON_Reward == 'POS':
print("########################################### Loading POS Support #########################################################")
import ltc_scrypt
else:
print("########################################### NOT Loading POS Support ######################################################")
pass
if settings.COINDAEMON_Reward == 'POS' and settings.COINDAEMON_SH256_TX = 'yes':
print("########################################### Loading SHA256 Transaction Message Support #########################################################")
import ltc_scrypt
else:
print("########################################### NOT Loading SHA256 Transaction Message Support ######################################################")
pass
import lib.logger
log = lib.logger.get_logger('halfnode')