Merge pull request #2154 from raistlinthewiz/development

added X11 algorithm support (coins like darkcoin)
This commit is contained in:
Sebastian Grewe 2014-04-29 06:48:12 +02:00
commit 61f7aa6ff0

View File

@ -0,0 +1,13 @@
<?php
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
/**
* We extend our CoinBase class
* No need to change anything, base class supports
* scrypt and sha256d
**/
class Coin extends CoinBase {
protected $target_bits = 24;
}
?>