3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-11 17:55:53 +00:00

Fix lock inversion tags<->wallet lock.

This commit is contained in:
Mike Hearn 2014-12-04 11:28:26 +01:00
parent 90dace2ef5
commit 7d7f826367

View File

@ -4227,7 +4227,7 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
}
@Override
public synchronized void setTag(String tag, ByteString value) {
public void setTag(String tag, ByteString value) {
super.setTag(tag, value);
saveNow();
}