public async Task <object> ExecuteTestAsync(IClient client)
        {
            var ethGetCompilers = new EthGetCompilers(client);

            return(await ethGetCompilers.SendRequestAsync());
        }
Esempio n. 2
0
        public async Task <dynamic> ExecuteTestAsync(RpcClient client)
        {
            var ethGetCompilers = new EthGetCompilers(client);

            return(await ethGetCompilers.SendRequestAsync());
        }
 public async Task<dynamic> ExecuteTestAsync(RpcClient client)
 {
     var ethGetCompilers = new EthGetCompilers(client);
     return await ethGetCompilers.SendRequestAsync();
 }
        public override async Task <string[]> ExecuteAsync(IClient client)
        {
            var ethGetCompilers = new EthGetCompilers(client);

            return(await ethGetCompilers.SendRequestAsync());
        }