Added coin_c11.class to fix the diffbits to Chaincoin (C11) based coins

This commit is contained in:
lubuzzo 2019-03-06 15:21:51 -03:00
parent 2cdfc9e46d
commit 480cefab68

View File

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