Beispiel #1
0
        public Task <BigInteger> GetAllowedTimeQueryAsync(byte[] hash, BlockParameter blockParameter = null)
        {
            var getAllowedTimeFunction = new GetAllowedTimeFunction();

            getAllowedTimeFunction.Hash = hash;

            return(ContractHandler.QueryAsync <GetAllowedTimeFunction, BigInteger>(getAllowedTimeFunction, blockParameter));
        }
Beispiel #2
0
 public Task <BigInteger> GetAllowedTimeQueryAsync(GetAllowedTimeFunction getAllowedTimeFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <GetAllowedTimeFunction, BigInteger>(getAllowedTimeFunction, blockParameter));
 }