X-Git-Url: https://git.mxchange.org/?p=core.git;a=blobdiff_plain;f=inc%2Fclasses%2Fmain%2Fscrypt%2Fclass_Scrypt.php;h=e1c7cb9c307abca6b73289c6d52c3a937de527f6;hp=8a9ec47e3ce08e6e81c2a08e385e53f7aa713c55;hb=0ccdb0379f308c6b7b5677b8b7c242df8e9dd300;hpb=c383f8560b321f2295623831bae369810df1c0e1 diff --git a/inc/classes/main/scrypt/class_Scrypt.php b/inc/classes/main/scrypt/class_Scrypt.php index 8a9ec47e..e1c7cb9c 100644 --- a/inc/classes/main/scrypt/class_Scrypt.php +++ b/inc/classes/main/scrypt/class_Scrypt.php @@ -130,7 +130,7 @@ abstract class Scrypt extends BaseFrameworkSystem */ public static function hashScrypt ($password, $salt = false, $N = 16384, $r = 8, $p = 1) { - if ((!FrameworkConfiguration::getSelfInstance()->isConfigEntrySet('extension_scrypt_loaded')) || (FrameworkConfiguration::getSelfInstance()->getConfigEntry('extension_scrypt_loaded') === FALSE)) { + if (!FrameworkFeature::isFeatureAvailable('hubcoin_reward')) { // Feature has been disabled throw new \InvalidArgumentException('Feature "scrypt" disabled.'); } @@ -174,7 +174,7 @@ abstract class Scrypt extends BaseFrameworkSystem return false; } - if ((!FrameworkConfiguration::getSelfInstance()->isConfigEntrySet('extension_scrypt_loaded')) || (FrameworkConfiguration::getSelfInstance()->getConfigEntry('extension_scrypt_loaded') === FALSE)) { + if (!FrameworkFeature::isFeatureAvailable('hubcoin_reward')) { // Feature has been disabled throw new \InvalidArgumentException('Feature "scrypt" disabled.'); }