Example #1
0
        public async void TestGetHeight()
        {
            var response = await _api.GetPeerHeightAsync();

            Assert.IsTrue(response.Height != null, $"Unable to retrieve Height. Response={response}");
            Debug.WriteLine(response.Height);
        }
        public async void TestGetHeight()
        {
            var req = new PeerBaseRequest()
            {
                //Nethash = "e90d39ac200c495b97deb6d9700745177c7fc4aa80a404108ec820cbeced054c"
            };
            var response = await _api.GetPeerHeightAsync(req);

            Assert.IsTrue(response.Height != null, $"Unable to retrieve Height. Response={response}");
            Debug.WriteLine(response.Height);
        }