mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-11-01 21:17:13 +00:00
Remove unused field.
This commit is contained in:
committed by
Andreas Schildbach
parent
a1c0e00c5f
commit
e311a3604e
@@ -83,7 +83,6 @@ public class PeerGroup implements TransactionBroadcaster {
|
||||
protected final ReentrantLock lock = Threading.lock("peergroup");
|
||||
|
||||
private final NetworkParameters params;
|
||||
private final Context context;
|
||||
@Nullable private final AbstractBlockChain chain;
|
||||
|
||||
// This executor is used to queue up jobs: it's used when we don't want to use locks for mutual exclusion,
|
||||
@@ -357,7 +356,7 @@ public class PeerGroup implements TransactionBroadcaster {
|
||||
* connections and keep track of existing ones.
|
||||
*/
|
||||
private PeerGroup(Context context, @Nullable AbstractBlockChain chain, ClientConnectionManager connectionManager, @Nullable TorClient torClient) {
|
||||
this.context = checkNotNull(context);
|
||||
checkNotNull(context);
|
||||
this.params = context.getParams();
|
||||
this.chain = chain;
|
||||
fastCatchupTimeSecs = params.getGenesisBlock().getTimeSeconds();
|
||||
|
||||
Reference in New Issue
Block a user