Some comments to separate declarations

This commit is contained in:
Ivan Vilata-i-Balaguer 2016-04-26 11:41:37 +02:00
parent 1f2d755c64
commit 59f66f8ef9

View File

@ -34,11 +34,18 @@ import java.util.concurrent.CountDownLatch;
import java.util.concurrent.TimeUnit;
public class NetworkStressTest {
/** Numeric identifier of the regtest Bitcoin network. */
private static final int REGTEST_NETWORK_ID = 2;
// Test parameters
/** Number of peer nodes to create. */
private static final int NPEERS = 1;
// Constants
/** Numeric identifier of the regtest Bitcoin network. */
private static final int REGTEST_NETWORK_ID = 2;
// Instance fields
/** A directory to temporarily hold seed and normal nodes' configuration and state files. */
private Path tempDir;
/** A single seed node that other nodes will contact to request initial data. */