Stake difficulty is HIGH. I don't get why folks stake at this rate. It has to be microwtakers letting their wallets run amuck. They would do so much better by combining their holdings and letting difficulty settle. I don't get it.
I am only staking when the difficulty is low.
I am using that script to control staking :
import pyjsonrpc
import time
http_client = pyjsonrpc.HttpClient(
url = "http://127.0.0.1:18514",
username = "tekcoinrpc",
password = "<password>"
)
pos_diff_limit = 0.001
while True:
pos_diff = info = http_client.call("getinfo")["PoS difficulty"]
# print pos_diff
if pos_diff > pos_diff_limit:
res = http_client.call("reservebalance", True, 99999999)
else:
res = http_client.call("reservebalance", False)
time.sleep(60)
it will activate staking on the wallet only if PoS diff is under pos_diff_limit.
you can put 0.00006 but I doubt difficulty will go down.