diff options
author | Roman Smrž <roman.smrz@seznam.cz> | 2021-12-26 22:22:34 +0100 |
---|---|---|
committer | Roman Smrž <roman.smrz@seznam.cz> | 2021-12-27 13:57:07 +0100 |
commit | 2903fd39c39357168a7cbb8b6821a0c99ed1e5a7 (patch) | |
tree | 75f58e2ea12f57a9381fda69e14f955a45e26592 /src/Attach.hs | |
parent | ed2fd1bf1f2e24565530bcfc9853cacbfa1c2a2a (diff) |
Generalize local state helper functions
Diffstat (limited to 'src/Attach.hs')
-rw-r--r-- | src/Attach.hs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/Attach.hs b/src/Attach.hs index 89ed4bb..e028718 100644 --- a/src/Attach.hs +++ b/src/Attach.hs @@ -88,15 +88,14 @@ attachAccept printMsg h peer = do liftIO $ printMsg $ "Confirmed peer, but verification of received identity failed" return (Nothing, NoPairing) OurRequestConfirm (Just (AttachIdentity _ keys (Just identity))) -> do - liftIO $ do - printMsg $ "Accepted updated identity" - updateLocalState_ h $ finalizeAttach identity keys + liftIO $ printMsg $ "Accepted updated identity" + flip runReaderT h $ updateLocalState_ $ finalizeAttach identity keys return (Nothing, PairingDone) OurRequestReady -> throwError $ "alredy accepted, waiting for peer" PeerRequest {} -> throwError $ "waiting for peer" PeerRequestConfirm -> do liftIO $ printMsg $ "Accepted new attached device, seding updated identity" - owner <- liftIO $ mergeSharedIdentity h + owner <- runReaderT mergeSharedIdentity h PeerIdentityFull pid <- peerIdentity peer Just secret <- liftIO $ loadKey $ idKeyIdentity owner liftIO $ do |