Exemplo n.º 1
0
        public Task <string> CalculatorsQueryAsync(BigInteger returnValue1, BlockParameter blockParameter = null)
        {
            var calculatorsFunction = new CalculatorsFunction();

            calculatorsFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <CalculatorsFunction, string>(calculatorsFunction, blockParameter));
        }
Exemplo n.º 2
0
 public Task <string> CalculatorsQueryAsync(CalculatorsFunction calculatorsFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <CalculatorsFunction, string>(calculatorsFunction, blockParameter));
 }