Remove unneeded initialisation of mutex

This commit is contained in:
Gustav Simonsson 2015-02-25 19:30:57 +01:00
parent d1311c53ee
commit 23f2658091
1 changed files with 0 additions and 1 deletions

View File

@ -60,7 +60,6 @@ func NewAccountManager(keyStore crypto.KeyStore2, unlockMilliseconds time.Durati
keyStore: keyStore,
unlockedKeys: keysMap,
unlockMilliseconds: unlockMilliseconds,
mutex: sync.RWMutex{}, // for accessing unlockedKeys map
}
return *am
}