Fixed an unneeded call

This commit is contained in:
ahmedbodi 2013-11-22 10:21:40 +00:00
parent 621eec24c1
commit ba43ec37c5

View File

@ -25,14 +25,14 @@ else:
if settings.COINDAEMON_Reward == 'POS': if settings.COINDAEMON_Reward == 'POS':
print("########################################### Loading POS Support #########################################################") print("########################################### Loading POS Support #########################################################")
import ltc_scrypt pass
else: else:
print("########################################### NOT Loading POS Support ######################################################") print("########################################### NOT Loading POS Support ######################################################")
pass pass
if settings.COINDAEMON_Reward == 'POS' and settings.COINDAEMON_SH256_TX == 'yes': if settings.COINDAEMON_Reward == 'POS' and settings.COINDAEMON_SH256_TX == 'yes':
print("########################################### Loading SHA256 Transaction Message Support #########################################################") print("########################################### Loading SHA256 Transaction Message Support #########################################################")
import ltc_scrypt pass
else: else:
print("########################################### NOT Loading SHA256 Transaction Message Support ######################################################") print("########################################### NOT Loading SHA256 Transaction Message Support ######################################################")
pass pass