File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -328,15 +328,14 @@ async function doInitializeEngine(
328328 console . log ( '[RAILGUN] Database path:' , dbPath ) ;
329329
330330 // Initialize the engine FIRST - callbacks must be set AFTER engine is started
331- // Skip merkletree scans on init to avoid rate limiting from public RPCs
332- // Scans will happen lazily when wallet is loaded and balances are needed
331+ // Note: skipMerkletreeScans must be false for wallet creation to work
333332 await startRailgunEngine (
334333 walletSource ,
335334 dbPath ,
336335 shouldDebug ,
337336 artifactStore ,
338337 false , // useNativeArtifacts - false for browser
339- true , // skipMerkletreeScans - skip to avoid rate limits, scan lazily when needed
338+ false , // skipMerkletreeScans - required for wallet operations
340339 poiNodeURLs ,
341340 ) ;
342341
You can’t perform that action at this time.
0 commit comments