mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-20 22:25:50 +00:00
NetworkParameters: Make double-checked locking on defaultSerializer safe with volatile keyword.
This commit is contained in:
parent
9d1cff1de1
commit
be40b7a3e5
@ -107,7 +107,7 @@ public abstract class NetworkParameters {
|
|||||||
protected int[] addrSeeds;
|
protected int[] addrSeeds;
|
||||||
protected HttpDiscovery.Details[] httpSeeds = {};
|
protected HttpDiscovery.Details[] httpSeeds = {};
|
||||||
protected Map<Integer, Sha256Hash> checkpoints = new HashMap<>();
|
protected Map<Integer, Sha256Hash> checkpoints = new HashMap<>();
|
||||||
protected transient MessageSerializer defaultSerializer = null;
|
protected volatile transient MessageSerializer defaultSerializer = null;
|
||||||
|
|
||||||
protected NetworkParameters() {
|
protected NetworkParameters() {
|
||||||
alertSigningKey = SATOSHI_KEY;
|
alertSigningKey = SATOSHI_KEY;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user