Ejemplo n.º 1
0
        public Task <BigInteger> DepositsQueryAsync(string returnValue1, string returnValue2, BlockParameter blockParameter = null)
        {
            var depositsFunction = new DepositsFunction();

            depositsFunction.ReturnValue1 = returnValue1;
            depositsFunction.ReturnValue2 = returnValue2;

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