* Added coin_base class to extend from * Defaults in coin_base apply for scrypt/sha256d * Added coin_scrypt and coin_sha256d that extend without changes * Updated statistics class to use new coin class calls Addresses #1953
13 lines
227 B
PHP
13 lines
227 B
PHP
<?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 {
|
|
}
|
|
|
|
?>
|