Exemple #1
0
        public Task <BigInteger> BanCounterQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var banCounterFunction = new BanCounterFunction();

            banCounterFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <BanCounterFunction, BigInteger>(banCounterFunction, blockParameter));
        }
Exemple #2
0
 public Task <BigInteger> BanCounterQueryAsync(BanCounterFunction banCounterFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <BanCounterFunction, BigInteger>(banCounterFunction, blockParameter));
 }