From: Roland Haeder Date: Sat, 22 Aug 2015 09:20:40 +0000 (+0200) Subject: Fixed small comment + added note for php-scrypt X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=c4b57837262234c0ebc3fcac26b46c48350c94e6;p=hub.git Fixed small comment + added note for php-scrypt Signed-off-by: Roland Haeder --- diff --git a/application/hub/init.php b/application/hub/init.php index 8699bacb7..1c750dc76 100644 --- a/application/hub/init.php +++ b/application/hub/init.php @@ -37,7 +37,7 @@ require($cfg->getConfigEntry('base_path') . 'inc/database.php'); // Get own internal address and set it in config $cfg->setConfigEntry('internal_address', HubTools::determineOwnInternalAddress()); -// By default scrypt is assumed (and later tested) NOT being there +// By default scrypt is assumed absent and later tested being there $cfg->setConfigEntry('extension_scrypt_loaded', FALSE); // [EOF] diff --git a/docs/README b/docs/README index 33a874b5e..01affac84 100644 --- a/docs/README +++ b/docs/README @@ -83,6 +83,16 @@ environment?) to find hash blocks: php index.php app=hub command=miner +The miner now relies on ext-scrypt. I used latest GIT/master here for developing +this software so you may have to do the same. I used it directly from GIT: + +$ git clone https://github.com/DomBlack/php-scrypt.git + +Follow their build instructions (mostly involves a "configure", "make" and "make +install"). Please also note that I cannot give support on 3rd-party programs or +libraries like this one. You may wish to build this PHP extension outside *this* +path, not to mix them both up. + -------------------------------------------------------------------------------- 6.) How to start the crawler --------------------------------------------------------------------------------