Added more details for upcoming new hashing algos
This commit is contained in:
parent
4bad017613
commit
16807d3226
@ -41,9 +41,9 @@ Features
|
|||||||
|
|
||||||
|
|
||||||
#### Under development
|
#### Under development
|
||||||
* [Scrypt-VRT](https://github.com/scr34m/vertcoin_scrypt) (Scrypt-Adaptive-Nfactor) (Vertcoin) algorithm
|
* Scrypt-VRT (Vertcoin) algorithm
|
||||||
* [Skein](https://github.com/ahmedbodi/stratum-mining-maxcoin/blob/master/lib/skeinhash.py) (Skeincoin) algorithm
|
* Skein (Skeincoin) algorithm
|
||||||
* [Max](https://github.com/Prydie/maxcoin-hash-python) algorithm
|
* Max (Maxcoin) algorithm
|
||||||
* P2P functionality for highly efficient block updates from daemon as a peer node
|
* P2P functionality for highly efficient block updates from daemon as a peer node
|
||||||
* Clustering to take advantage of multiple CPU cores
|
* Clustering to take advantage of multiple CPU cores
|
||||||
|
|
||||||
@ -157,6 +157,7 @@ Listen to pool events
|
|||||||
worker: 'matt.worker1', //stratum worker name
|
worker: 'matt.worker1', //stratum worker name
|
||||||
difficulty: 64, //stratum client difficulty
|
difficulty: 64, //stratum client difficulty
|
||||||
height: 443795, //block height
|
height: 443795, //block height
|
||||||
|
difficulty: 3349 //network difficulty for this block
|
||||||
//solution is set if block was found
|
//solution is set if block was found
|
||||||
solution: '110c0447171ad819dd181216d5d80f41e9218e25d833a2789cb8ba289a52eee4',
|
solution: '110c0447171ad819dd181216d5d80f41e9218e25d833a2789cb8ba289a52eee4',
|
||||||
error: 'low share difficulty' //set if share is rejected for some reason
|
error: 'low share difficulty' //set if share is rejected for some reason
|
||||||
|
|||||||
@ -65,6 +65,7 @@ var JobManager = module.exports = function JobManager(options){
|
|||||||
return '00000000ffff0000000000000000000000000000000000000000000000000000';
|
return '00000000ffff0000000000000000000000000000000000000000000000000000';
|
||||||
case 'scrypt':
|
case 'scrypt':
|
||||||
case 'scrypt-jane':
|
case 'scrypt-jane':
|
||||||
|
case 'script-vrt':
|
||||||
return '0000ffff00000000000000000000000000000000000000000000000000000000';
|
return '0000ffff00000000000000000000000000000000000000000000000000000000';
|
||||||
case 'quark':
|
case 'quark':
|
||||||
case 'x11':
|
case 'x11':
|
||||||
@ -90,6 +91,10 @@ var JobManager = module.exports = function JobManager(options){
|
|||||||
return function(){
|
return function(){
|
||||||
return scryptJane.digest.apply(this, arguments);
|
return scryptJane.digest.apply(this, arguments);
|
||||||
}
|
}
|
||||||
|
case 'scrypt-vrt':
|
||||||
|
return function(){
|
||||||
|
//https://github.com/scr34m/vertcoin_scrypt
|
||||||
|
}
|
||||||
case 'quark':
|
case 'quark':
|
||||||
return function(){
|
return function(){
|
||||||
return quark.digest.apply(this, arguments);
|
return quark.digest.apply(this, arguments);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user