summaryrefslogtreecommitdiff
path: root/src/Crypto/Tox.hs
diff options
context:
space:
mode:
authorjoe <joe@jerkface.net>2018-05-30 23:53:44 -0400
committerjoe <joe@jerkface.net>2018-05-30 23:53:44 -0400
commit514d0cad3f2ccaf0e89aadb4ab3067884ec20a6c (patch)
treea7d15e0d3592f123b10f2da3a458c023bd74de5b /src/Crypto/Tox.hs
parent2cffde93a0d814ebb54bdcbd3d6e598cbaae6ee1 (diff)
tox: Removed obsolete "userKeys" TVar, use keys from ContactInfo.
Diffstat (limited to 'src/Crypto/Tox.hs')
-rw-r--r--src/Crypto/Tox.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Crypto/Tox.hs b/src/Crypto/Tox.hs
index acb98e3e..864e17df 100644
--- a/src/Crypto/Tox.hs
+++ b/src/Crypto/Tox.hs
@@ -527,7 +527,7 @@ data TransportCrypto = TransportCrypto
527 , rendezvousPublic :: PublicKey 527 , rendezvousPublic :: PublicKey
528 , transportSymmetric :: STM SymmetricKey 528 , transportSymmetric :: STM SymmetricKey
529 , transportNewNonce :: STM Nonce24 529 , transportNewNonce :: STM Nonce24
530 , userKeys :: TVar [(SecretKey,PublicKey)] 530 , userKeys :: STM [(SecretKey,PublicKey)]
531 , pendingCookies :: TVar [(SockAddr, (Int, PublicKey))] 531 , pendingCookies :: TVar [(SockAddr, (Int, PublicKey))]
532 , secretsCache :: SecretsCache 532 , secretsCache :: SecretsCache
533 } 533 }