mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-12 18:25:51 +00:00
Wallet: move setTag to the extensions section of the file.
This commit is contained in:
parent
e9c777c9a6
commit
f2f64d1e80
@ -3588,6 +3588,12 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public synchronized void setTag(String tag, ByteString value) {
|
||||||
|
super.setTag(tag, value);
|
||||||
|
saveNow();
|
||||||
|
}
|
||||||
|
|
||||||
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// Boilerplate for running event listeners - dispatches events onto the user code thread (where we don't do
|
// Boilerplate for running event listeners - dispatches events onto the user code thread (where we don't do
|
||||||
@ -4105,10 +4111,4 @@ public class Wallet extends BaseTaggableObject implements Serializable, BlockCha
|
|||||||
public ReentrantLock getLock() {
|
public ReentrantLock getLock() {
|
||||||
return lock;
|
return lock;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public synchronized void setTag(String tag, ByteString value) {
|
|
||||||
super.setTag(tag, value);
|
|
||||||
saveNow();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user