[ADDED] x15 coin class for testing

This commit is contained in:
Sebastian Grewe 2016-06-15 08:49:04 +02:00 committed by GitHub
parent d8c6d88521
commit f72d3f4a76

View File

@ -0,0 +1,11 @@
<?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;
protected $share_difficulty_precision = 4;
}