I. On VPS


To show staking status on your VPS, run the following getstakinginfo


cd ~/bitcoinc-1.0.1/bin/

./bitcoinc-cli getstakinginfo

{

  "enabled": true,

  "staking": true,

  "errors": "",

...

}


The key is "enabled":true"


staking": could be true or false depending on if any of your inputs have 225 confirmations since their last staking reward.


check coldstaking block


  "coldstaking": {

    "active": true,

    "amount_in_coldstakeable_script": xxx.xxx,

    "estimated_weight": yyy.yyy,

    "percent_in_coldstakeable_script": 100.00,

    "coldstake_change_address": "",

    "estimated_rewardfrequency": 27283

  }


"active" is expected to be true on the VPS.

amount_in_coldstakeable_script:  are total coin on coldstake 

percent_in_coldstakeable_script: 100.00 mean you had completed stake all your coin 


"estimated_rewardfrequency" is a rough estimate on how long (in seconds) until you find a block, but could be over or underestimating highly.

In above example you can calculate the estimate time to receive reward by put 27283 here https://www.tools4noobs.com/online_tools/seconds_to_hh_mm_ss/

mean you will received reward on 7 hours, 34 minutes and 43 seconds


II. On Local Console


Help==> Debug windows ==> Console tab  Running getstakinginfo on your local console 



  "enabled": false,

 

  "staking": false,

 

  "errors": "",

 

  "percentyearreward": 5,

 

  "moneysupply": 7386228344.79384090,

 

  "currentblocksize": 0,

 

  "currentblocktx": 0,

 

  "pooledtx": 0,

 

  "difficulty": 120589171.2683232,

 

  "lastsearchtime": 0,

 

  "amount_in_stakeable_script": 0.00000000,

 

  "weight": 0,

 

  "netstakeweight": 1345063667.146267,

 

  "estimated_rewardfrequency": 0,

 

  "coldstaking": {

 

    "active": true,

 

    "amount_in_coldstakeable_script": xxx.xxx,

 

    "estimated_weight": yyy.yyy,

 

    "percent_in_coldstakeable_script": 100.00,

 

    "coldstake_change_address": "",

 

    "estimated_rewardfrequency": 4365

 

  }

 

}



"active" is expected to be true on the local wallet

amount_in_stakeable_script: are total coin in stake ( expected equal your total stake coin )

estimated_rewardfrequencyare estimated times to get reward ( in seconds)