-
Notifications
You must be signed in to change notification settings - Fork 122
How to check that your masternode is mining fine
U-Zyn Chua edited this page Apr 12, 2021
·
2 revisions
-
Turn on staking log. Add
debug=staking
atdefi.conf
. -
Restart your masternode.
-
Check that
debug.log
has at least one such line every second for every single masternode that your miner is mining for:2021-04-12T02:36:08Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:09Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:10Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416
If your miner is mining for 5 masternodes, you should be seeing 5 of these every second, e.g.:
2021-04-12T02:36:08Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:08Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:08Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:08Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:08Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:09Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:09Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:09Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:09Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416 2021-04-12T02:36:09Z CreateNewBlock(): block weight: 10013 txs: 7 fees: 1896778 sigops 416
Take note that your debug.log
would get really huge really quick with staking logging turned on, you might want to set up log rotation or turn off staking logging after you are verified that your masternode is mining okay.