Example #1
0
        public Task <BigInteger> ReportingCounterQueryAsync(string returnValue1, BigInteger returnValue2, BlockParameter blockParameter = null)
        {
            var reportingCounterFunction = new ReportingCounterFunction();

            reportingCounterFunction.ReturnValue1 = returnValue1;
            reportingCounterFunction.ReturnValue2 = returnValue2;

            return(ContractHandler.QueryAsync <ReportingCounterFunction, BigInteger>(reportingCounterFunction, blockParameter));
        }
Example #2
0
 public Task <BigInteger> ReportingCounterQueryAsync(ReportingCounterFunction reportingCounterFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <ReportingCounterFunction, BigInteger>(reportingCounterFunction, blockParameter));
 }