Skip to content

Commit

Permalink
Added more details for upcoming new hashing algos
Browse files Browse the repository at this point in the history
  • Loading branch information
zone117x committed Feb 27, 2014
1 parent 4bad017 commit 16807d3
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,9 @@ Features


#### Under development
* [Scrypt-VRT](https://github.com/scr34m/vertcoin_scrypt) (Scrypt-Adaptive-Nfactor) (Vertcoin) algorithm
* [Skein](https://github.com/ahmedbodi/stratum-mining-maxcoin/blob/master/lib/skeinhash.py) (Skeincoin) algorithm
* [Max](https://github.com/Prydie/maxcoin-hash-python) algorithm
* Scrypt-VRT (Vertcoin) algorithm
* Skein (Skeincoin) algorithm
* Max (Maxcoin) algorithm
* P2P functionality for highly efficient block updates from daemon as a peer node
* Clustering to take advantage of multiple CPU cores

Expand Down Expand Up @@ -157,6 +157,7 @@ Listen to pool events
worker: 'matt.worker1', //stratum worker name
difficulty: 64, //stratum client difficulty
height: 443795, //block height
difficulty: 3349 //network difficulty for this block
//solution is set if block was found
solution: '110c0447171ad819dd181216d5d80f41e9218e25d833a2789cb8ba289a52eee4',
error: 'low share difficulty' //set if share is rejected for some reason
Expand Down
5 changes: 5 additions & 0 deletions lib/jobManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ var JobManager = module.exports = function JobManager(options){
return '00000000ffff0000000000000000000000000000000000000000000000000000';
case 'scrypt':
case 'scrypt-jane':
case 'script-vrt':
return '0000ffff00000000000000000000000000000000000000000000000000000000';
case 'quark':
case 'x11':
Expand All @@ -90,6 +91,10 @@ var JobManager = module.exports = function JobManager(options){
return function(){
return scryptJane.digest.apply(this, arguments);
}
case 'scrypt-vrt':
return function(){
//https://github.com/scr34m/vertcoin_scrypt
}
case 'quark':
return function(){
return quark.digest.apply(this, arguments);
Expand Down

0 comments on commit 16807d3

Please sign in to comment.