File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 33
33
let searchURL: string
34
34
let knownAddresses: AccountAddress [] | undefined = undefined
35
35
let searchAddressStartIndex = 0
36
- let currendSearchGap = 0
36
+ let currentSearchGap = 0
37
37
let isBusy = false
38
38
39
39
onMount (() => {
90
90
}
91
91
92
92
async function search(): Promise <void > {
93
- currendSearchGap = 0
93
+ currentSearchGap = 0
94
94
const isUnlocked = await unlock
95
95
96
96
if (isUnlocked && ! error ) {
97
97
isBusy = true
98
- while (currendSearchGap < ADDRESS_GAP_LIMIT ) {
98
+ while (currentSearchGap < ADDRESS_GAP_LIMIT ) {
99
99
const [nextAddressToCheck, addressIndex] = await generateNextUnknownAddress ()
100
100
if (! nextAddressToCheck ) {
101
101
isBusy = false
118
118
119
119
knownAddresses .push (accountAddress )
120
120
} else {
121
- currendSearchGap ++
121
+ currentSearchGap ++
122
122
}
123
123
}
124
124
You can’t perform that action at this time.
0 commit comments