Skip to content

Commit

Permalink
lint: replace let with const to fix lint failure
Browse files Browse the repository at this point in the history
  • Loading branch information
rabi-siddique committed Sep 26, 2024
1 parent fff596d commit e195a64
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,14 +111,14 @@ const handlehighPrioritySendersList = async ({

if (highPrioritySendersManager) {
// Add the addresses
for (let address of uniqueAddAddresses) {
for (const address of uniqueAddAddresses) {
await E(highPrioritySendersManager).add(
EC_HIGH_PRIORITY_SENDERS_NAMESPACE,
address,
);
}
// Remove the addresses
for (let address of uniqueRemoveAddresses) {
for (const address of uniqueRemoveAddresses) {
await E(highPrioritySendersManager).remove(
EC_HIGH_PRIORITY_SENDERS_NAMESPACE,
address,
Expand Down

0 comments on commit e195a64

Please sign in to comment.