We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2edf11 commit 7419890Copy full SHA for 7419890
components/SelectValidator.tsx
@@ -30,6 +30,12 @@ export default function SelectValidator({
30
const [open, setOpen] = useState(false);
31
const [searchText, setSearchText] = useState("");
32
33
+ // The list of validators includes unbonding and unbonded validators in order to
34
+ // be able to do undelegates and redelegates from jailed validators as well as delegate
35
+ // to validators who are not yet active.
36
+ //
37
+ // If this list becomes too long due to spam registrations, we can try to do some
38
+ // reasonable filtering here.
39
const validators = [...bonded, ...unbonding, ...unbonded];
40
41
return (
0 commit comments