corrected class file

This commit is contained in:
iAmShorty 2016-07-01 11:37:42 +02:00
parent 970bec62dd
commit 00bdcdf0b1

View File

@ -1,14 +1,11 @@
<?php <?php
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1; $defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
/** /**
* We extend our CoinBase class * We extend our CoinBase class
* No need to change anything, base class supports * No need to change anything, base class supports
* scrypt and sha256d * scrypt and sha256d
* **/
* Note: This is exactly the same as Scrypt, but it's class Coin extends CoinBase {
* here to let MPOS api report the correct coin algorithm. protected $target_bits = 16;
**/ }
class Coin extends CoinBase {
protected $target_bits = 16;
}