add synchronize locks on methods that modify the keystore
- context: amidst heavy incoming traffic, we get
ConcurrentModificationException
s whenAccountData.save
is called - to guard against such concurrency errors around any keystore writes, we mark
AccountData.save
andIdentityKeystore.saveIdentity
as synchronized