Skip to content
This repository was archived by the owner on Sep 1, 2021. It is now read-only.

claimAvailability treats abandoned claim names as unavailable on publish #1033

@jessopb

Description

@jessopb

Most queries in chainquery claimQueries restrict queries:

const whereClause = bidState || {
      [sequelize.Op.or]: [
        { bid_state: 'Controlling' },
        { bid_state: 'Active' },
        { bid_state: 'Accepted' },
      ],
    };

checkClaimAvailability has it's own chainquery.claim query:

  return chainquery.claim
    .findAll({
      attributes: ['claim_address'],
      where     : {
        name,
        claim_address: {
          [Op.or]: claimAddresses,
        },
      },
    })
    .then(result => {
      return (result.length <= 0);
    })
    .catch(error => {
      throw error;
    });

That causes claims to show as reserved names even when abandoned. This query could probably be moved into claim queries with the rest of them.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions