示例#1
0
        public Task <BigInteger> ValidatorCounterQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var validatorCounterFunction = new ValidatorCounterFunction();

            validatorCounterFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <ValidatorCounterFunction, BigInteger>(validatorCounterFunction, blockParameter));
        }
示例#2
0
 public Task <BigInteger> ValidatorCounterQueryAsync(ValidatorCounterFunction validatorCounterFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <ValidatorCounterFunction, BigInteger>(validatorCounterFunction, blockParameter));
 }