Ejemplo n.º 1
0
        public Task <BigInteger> RentDueQueryAsync(byte[] label, string subdomain, BlockParameter blockParameter = null)
        {
            var rentDueFunction = new RentDueFunction();

            rentDueFunction.Label     = label;
            rentDueFunction.Subdomain = subdomain;

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