rvv001 - GUI -- Import Viewing Key and Seed Phrase

QR generation added for new Vks and Seed_Phrases
This commit is contained in:
Rene V. Vergara 2025-02-27 13:11:48 -05:00
parent f701e57cbb
commit 2a3bdf0f65

View file

@ -2135,12 +2135,13 @@ handleEvent wenv node model evt =
-- --
ReportVKeySaved -> ReportVKeySaved ->
[ Task $ do [ Task $ do
generateQRCodes $ model ^. configuration
pool <- runNoLoggingT $ initPool $ c_dbPath $ model ^. configuration pool <- runNoLoggingT $ initPool $ c_dbPath $ model ^. configuration
wL <- getWallets pool (model ^. network) wL <- getWallets pool (model ^. network)
return $ LoadWallets wL return $ LoadWallets wL
, Event $ CloseNVkShow , Event $ CloseNVkShow
, Event $ ShowMessage "Viewing Key imported!" , Event $ ShowMessage "Viewing Key imported!"
, Event $ SetTimerCount , Event $ StartSync
] ]
-- --
-- Show Import Seed Phrase Form -- Show Import Seed Phrase Form
@ -2172,6 +2173,7 @@ handleEvent wenv node model evt =
-- --
ReportSeedSaved -> ReportSeedSaved ->
[ Task $ do [ Task $ do
generateQRCodes $ model ^. configuration
pool <- runNoLoggingT $ initPool $ c_dbPath $ model ^. configuration pool <- runNoLoggingT $ initPool $ c_dbPath $ model ^. configuration
wL <- getWallets pool (model ^. network) wL <- getWallets pool (model ^. network)
return $ LoadWallets wL return $ LoadWallets wL