Skip to content

Commit 61f7aa6

Browse files
committed
Merge pull request #2154 from raistlinthewiz/development
added X11 algorithm support (coins like darkcoin)
2 parents aa28e2d + 4c4944f commit 61f7aa6

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
$defflip = (!cfip()) ? exit(header('HTTP/1.1 401 Unauthorized')) : 1;
3+
4+
/**
5+
* We extend our CoinBase class
6+
* No need to change anything, base class supports
7+
* scrypt and sha256d
8+
**/
9+
class Coin extends CoinBase {
10+
protected $target_bits = 24;
11+
}
12+
13+
?>

0 commit comments

Comments
 (0)