diff --git a/components/SelectValidator.tsx b/components/SelectValidator.tsx index a5635e9f..35e68bd3 100644 --- a/components/SelectValidator.tsx +++ b/components/SelectValidator.tsx @@ -30,6 +30,12 @@ export default function SelectValidator({ const [open, setOpen] = useState(false); const [searchText, setSearchText] = useState(""); + // The list of validators includes unbonding and unbonded validators in order to + // be able to do undelegates and redelegates from jailed validators as well as delegate + // to validators who are not yet active. + // + // If this list becomes too long due to spam registrations, we can try to do some + // reasonable filtering here. const validators = [...bonded, ...unbonding, ...unbonded]; return (