Skip to content

Commit ae1f838

Browse files
fix: typo
1 parent 090945f commit ae1f838

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

packages/desktop/components/popups/AddressHistoryPopup.svelte

+4-4
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
let searchURL: string
3434
let knownAddresses: AccountAddress[] | undefined = undefined
3535
let searchAddressStartIndex = 0
36-
let currendSearchGap = 0
36+
let currentSearchGap = 0
3737
let isBusy = false
3838
3939
onMount(() => {
@@ -90,12 +90,12 @@
9090
}
9191
9292
async function search(): Promise<void> {
93-
currendSearchGap = 0
93+
currentSearchGap = 0
9494
const isUnlocked = await unlock
9595
9696
if (isUnlocked && !error) {
9797
isBusy = true
98-
while (currendSearchGap < ADDRESS_GAP_LIMIT) {
98+
while (currentSearchGap < ADDRESS_GAP_LIMIT) {
9999
const [nextAddressToCheck, addressIndex] = await generateNextUnknownAddress()
100100
if (!nextAddressToCheck) {
101101
isBusy = false
@@ -118,7 +118,7 @@
118118
119119
knownAddresses.push(accountAddress)
120120
} else {
121-
currendSearchGap++
121+
currentSearchGap++
122122
}
123123
}
124124

0 commit comments

Comments
 (0)