• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

getblocktemplate

Hi everyone - I could use some assistance. I am the co-owner of the Prohashing mining pool, and mine Dash using the Dash core daemon on a Debian 8 server. Our client is the latest version 120200 and is synchronized with the network, but it seems that about 50% of the time, when we try to call "getblocktemplate", we receive the error:

Code:
error code: -10
error message:
Dash Core is syncing with network...

And that error is shown despite the client having the same number of blocks as all its peers. When we can't get a block template, we can't mine Dash. We run about 300 coins on our servers, and I have never experienced another coin that exhibits this behavior. Does anyone have suggestions on what might be causing this issue and how to fix it?

Thanks for the help in advance.
 
Hello,

first use 12.2.1 https://github.com/dashpay/dash/releases/tag/v0.12.2.1
12.2.0 has high cpu usage issue.

To check if dashd is synced, use `mnsync status`
AssetID should be `999` and `"IsSynced": true,`

Code:
dash-cli mnsync status
{
  "AssetID": 999,
  "AssetName": "MASTERNODE_SYNC_FINISHED",
  "AssetStartTime": 1510382765,
  "Attempt": 0,
  "IsBlockchainSynced": true,
  "IsMasternodeListSynced": true,
  "IsWinnersListSynced": true,
  "IsSynced": true,
  "IsFailed": false
}
 
Back
Top