Skip to content

Commit

Permalink
added neoscrypt class
Browse files Browse the repository at this point in the history
  • Loading branch information
iAmShorty committed Jun 30, 2016
1 parent 9e8caa5 commit e6583ff
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions include/classes/coins/coin_neoscrypt.class.php
@@ -0,0 +1,14 @@
<?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
*
* Note: This is exactly the same as Scrypt, but it's
* here to let MPOS api report the correct coin algorithm.
**/
class Coin extends CoinBase {
protected $target_bits = 16;
}

0 comments on commit e6583ff

Please sign in to comment.