This commit is contained in:
Jerry Brady 2014-04-17 19:26:09 +00:00
commit 860d36139b
13 changed files with 62 additions and 1 deletions

5
coins/defcoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Defcoin",
"symbol": "DEF",
"algorithm": "scrypt"
}

5
coins/jennycoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Jennycoin",
"symbol": "JNY",
"algorithm": "scrypt"
}

5
coins/klondikecoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Klondikecoin",
"symbol": "KDC",
"algorithm": "scrypt"
}

6
coins/muniti.json Normal file
View File

@ -0,0 +1,6 @@
{
"name": "Muniti",
"symbol": "MUN",
"algorithm": "x11",
"mposDiffMultiplier": 256
}

5
coins/potcoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Potcoin",
"symbol": "POT",
"algorithm": "scrypt"
}

5
coins/procoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Procoin",
"symbol": "PCN",
"algorithm": "scrypt"
}

5
coins/ronpaulcoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "RonPaulCoin",
"symbol": "RPC",
"algorithm": "scrypt"
}

5
coins/rubycoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Rubycoin",
"symbol": "RUBY",
"algorithm": "scrypt"
}

5
coins/spartancoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Spartancoin",
"symbol": "SPN",
"algorithm": "scrypt"
}

5
coins/stoopidcoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Stoopidcoin",
"symbol": "STP",
"algorithm": "scrypt"
}

5
coins/suncoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Suncoin",
"symbol": "SUN",
"algorithm": "scrypt"
}

5
coins/whitecoin.json Normal file
View File

@ -0,0 +1,5 @@
{
"name": "Whitecoin",
"symbol": "WC",
"algorithm": "scrypt"
}

View File

@ -180,7 +180,7 @@ module.exports = function(logger){
logger.debug(logSystem, logComponent, logSubCat, 'Block found: ' + data.blockHash);
if (isValidShare)
logger.debug(logSystem, logComponent, logSubCat, 'Share accepted at diff ' + data.difficulty + ' by ' + data.worker + ' [' + data.ip + ']' );
logger.debug(logSystem, logComponent, logSubCat, 'Share accepted at diff ' + data.difficulty + '/' + data.shareDiff + ' by ' + data.worker + ' [' + data.ip + ']' );
else if (!isValidShare)
logger.debug(logSystem, logComponent, logSubCat, 'Share rejected: ' + shareData);