public void TxListByAddressTest(string txid)
        {
            CurrencyProvider.Protocol.Tron.CurrencyProvider currencyProvider = GetMainNetCurrencyProvider;

            List <object> txListByAddress = currencyProvider.txListByAddress(txid);

            Console.WriteLine($"{txid}:{txListByAddress.Count}");
            Assert.AreEqual(100, txListByAddress.Count);
        }
        public void txListByAddress_GetTranByHashIdTest()
        {
            List <object> objects = _currencyProvider.txListByAddress(_addressValid);

            Assert.IsTrue(objects.Count > 0);
        }