Skip to content

Commit

Permalink
Update the signatureschemeswap protocol upgrade settings
Browse files Browse the repository at this point in the history
  • Loading branch information
AionJayT committed Dec 2, 2020
1 parent 4d9db8e commit b06e3bf
Show file tree
Hide file tree
Showing 3 changed files with 110 additions and 1 deletion.
Binary file removed aion_pool/examples/.aion_pool.json.swp
Binary file not shown.
2 changes: 1 addition & 1 deletion aion_pool/examples/aion_pool.json
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
"percentage": 1
}
],
"signatureSwapProtocolUpgradeBlock": 8000000,
"signatureSwapProtocolUpgradeBlock": 7441441,
"jobRebroadcastTimeout": 10,
"clientConnectionTimeout": 600,
"banning": {
Expand Down
109 changes: 109 additions & 0 deletions aion_pool/examples/aion_pool_amity.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
{
"logging": {
"level": "info",
"enableConsoleLog": true,
"enableConsoleColors": true,
"logFile": "master.log",
"logBaseDirectory": "logs",
"perPoolLogFile": false
},
"banning": {
"manager": "integrated",
"banOnJunkReceive": true,
"banOnInvalidShares": false
},
"notifications": {
"enabled": false,
"email": {
"host": "smtp.example.com",
"port": 587,
"user": "user",
"password": "password",
"fromAddress": "info@yourpool.org",
"fromName": "pool support"
},
"admin": {
"enabled": false,
"emailAddress": "user@example.com",
"notifyBlockFound": true
}
},
"persistence": {
"postgres": {
"host": "127.0.0.1",
"port": 5432,
"user": "miningcore",
"password": "password",
"database": "miningcore"
}
},

"paymentProcessing": {
"enabled": true,
"interval": 300,
"shareRecoveryFile": "recovered-shares.txt"
},

"api": {
"enabled": true,
"listenAddress": "*",
"port": 4000
},

"pools": [{
"id": "aion-1",
"enabled": true,
"coin": "aion",
"address": "0xa02e4f1e4c192a0a992eb5d4d30e6359b800a3759e1d749c6c0b591ab8e47fc9",
"rewardRecipients": [
{
"address": "0xa02e4f1e4c192a0a992eb5d4d30e6359b800a3759e1d749c6c0b591ab8e47fc9",
"percentage": 1
}
],
"signatureSwapProtocolUpgradeBlock": 3658558,
"jobRebroadcastTimeout": 10,
"clientConnectionTimeout": 600,
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 50,
"checkThreshold": 50
},
"ports": {
"3334": {
"listenAddress": "0.0.0.0",
"difficulty": 512,
"varDiff": {
"minDiff": 128,
"maxDiff": 1000000000000000000000000,
"targetTime": 5,
"retargetTime": 45,
"variancePercent": 30,
"maxDelta": 500
}
}
},
"daemons": [{
"host": "127.0.0.1",
"port": 8545,
"user": "",
"password": ""
}
],
"paymentProcessing": {
"enabled": true,
"minimumPayment": 0.1,
"payoutScheme": "PPLNS",
"payoutSchemeConfig": {
"factor": 2.0
},
"accountPassword": "PLAT4life",
"keepTransactionFees": false,
"minimumConfirmations": 30,
"nrgFee": 0.0001,
"minimumPeerCount": 1
}
}]
}

0 comments on commit b06e3bf

Please sign in to comment.