You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I'm trying to make Tabo work with Miningcore. Anyone was successful?
The pool always say: [tabo1] Waiting for daemons to come online
My coins.json confit:
"tabo": {
"name": "Tabo",
"canonicalName": "Tabo",
"symbol": "TABO",
"family": "cryptonote",
"website": "https://taboprotocol.tech/",
"market": "https://xeggex.com/market/TABO_USDT",
"twitter": "",
"telegram": "",
"discord": "https://discord.gg/qEGWN7RT",
"hash": "randomx",
"hashVariant": 0,
"smallestUnit": 1000000000000,
"addressPrefix": 1486494,
"addressPrefixStagenet": 17052,
"addressPrefixTestnet": 1426076,
"addressPrefixIntegrated": 689692,
"addressPrefixIntegratedStagenet": 869020,
"addressPrefixIntegratedTestnet": 2785948,
"subAddressPrefix": 1083420,
"subAddressPrefixTestnet": 1163932,
"subAddressPrefixStagenet": 3080860,
"explorerBlockLink": "https://explorer.taboprotocol.tech/block/$height$",
"explorerTxLink": "https://explorer.taboprotocol.tech/tx/{0}"
},
My pool.json
"id": "tabo1",
"enabled": true,
"coin": "tabo",
"randomXRealm": "tabo1",
"address": "TaboAddress",
"rewardRecipients": [
{
"address": "TaboAddress",
"percentage": 1
}
],
"blockRefreshInterval": 500,
"clientConnectionTimeout": 600,
"banning": {
"enabled": true,
"time": 600,
"invalidPercent": 50,
"checkThreshold": 50
},
"ports": {
"3032": {
"listenAddress": "0.0.0.0",
"difficulty": 100000,
"name": "CPU Mining",
"varDiff": {
"minDiff": 200000,
"maxDiff": null,
"targetTime": 15,
"retargetTime": 90,
"variancePercent": 30
}
}
},
"daemons": [
{
"host": "127.0.0.1",
"port": 18081,
"user": "user",
"password": "password",
},
{
"host": "127.0.0.1",
"port": 18082,
"user": "",
"password": "",
"category": "wallet",
}
],
"paymentProcessing": {
"enabled": true,
"minimumPayment": 1,
"minimumPaymentToPaymentId": 1.0,
"payoutScheme": "PROP",
"payoutSchemeConfig": {
"factor": 0.5
}
}
}
My tabod config:
`rpc-bind-ip=127.0.0.1
rpc-bind-port=18081
rpc-login=user:password
out-peers=32
p2p-bind-ip=0.0.0.0
p2p-bind-port=18080
My tabo-wallet-rpc config:
`daemon-address=127.0.0.1:18081
daemon-login=user:password
wallet-file=/home/user/wallet
password=password
rpc-bind-port=18082
rpc-bind-ip=127.0.0.1
disable-rpc-login=1
log-level=1
I followed the Monero config. The wallet-rpc connect just fine to tabod. But miningcore just won't connect.
Any help is appreciated :)
Thaks!
Beta Was this translation helpful? Give feedback.
All reactions