Ejemplo n.º 1
0
        public Task <bool> ReservedQueryAsync(byte[] name, BlockParameter blockParameter = null)
        {
            var reservedFunction = new ReservedFunction();

            reservedFunction.Name = name;

            return(ContractHandler.QueryAsync <ReservedFunction, bool>(reservedFunction, blockParameter));
        }
Ejemplo n.º 2
0
 public Task <bool> ReservedQueryAsync(ReservedFunction reservedFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <ReservedFunction, bool>(reservedFunction, blockParameter));
 }