We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbc5d54 commit 1eb198aCopy full SHA for 1eb198a
packages/brain/src/modules/cron/reloadValidators/postValidatorsFeeRecipientsFromDb.ts
@@ -16,7 +16,10 @@ export async function postValidatorsFeeRecipientsFromDb({
16
validatorPubkeysFeeRecipients: { pubkey: string; feeRecipient: string }[];
17
}): Promise<void> {
18
const feeRecipientsToPost = validatorPubkeysFeeRecipients
19
- .filter((validator) => validator.feeRecipient !== dbData[validator.pubkey].feeRecipient)
+ .filter(
20
+ (validator) =>
21
+ validator.feeRecipient.toLocaleLowerCase() !== dbData[validator.pubkey].feeRecipient.toLocaleLowerCase()
22
+ )
23
.map((validator) => ({
24
pubkey: validator.pubkey,
25
feeRecipient: dbData[validator.pubkey].feeRecipient
0 commit comments