Esempio n. 1
0
        public async void TestGetPeerList()
        {
            var response = await _api.GetPeerListAsync();

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

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