CentralMine.NET.US_Stratum.MiningAuthorize C# (CSharp) Method

MiningAuthorize() private method

private MiningAuthorize ( Newtonsoft.Json.Linq.JObject obj ) : void
obj Newtonsoft.Json.Linq.JObject
return void
        void MiningAuthorize(JObject obj)
        {
            mAuthorized = (bool)obj["result"];
            if (!mAuthorized)
                Disconnect();
        }