Ejemplo n.º 1
0
        public Task <BigInteger> FilletPriceQueryAsync(ushort returnValue1, ushort returnValue2, byte returnValue3, BlockParameter blockParameter = null)
        {
            var filletPriceFunction = new FilletPriceFunction();

            filletPriceFunction.ReturnValue1 = returnValue1;
            filletPriceFunction.ReturnValue2 = returnValue2;
            filletPriceFunction.ReturnValue3 = returnValue3;

            return(ContractHandler.QueryAsync <FilletPriceFunction, BigInteger>(filletPriceFunction, blockParameter));
        }
Ejemplo n.º 2
0
 public Task <BigInteger> FilletPriceQueryAsync(FilletPriceFunction filletPriceFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <FilletPriceFunction, BigInteger>(filletPriceFunction, blockParameter));
 }