use of org.ethereum.config.blockchain.RegTestConfig in project rskj by rsksmart.
the class BridgeSupportTest method setUpOnEachTest.
@Before
public void setUpOnEachTest() {
config = new RskSystemProperties();
config.setBlockchainConfig(new RegTestConfig());
bridgeConstants = config.getBlockchainConfig().getCommonConstants().getBridgeConstants();
btcParams = bridgeConstants.getBtcParams();
}
use of org.ethereum.config.blockchain.RegTestConfig in project rskj by rsksmart.
the class BridgeTest method setUpBeforeClass.
@BeforeClass
public static void setUpBeforeClass() throws Exception {
config.setBlockchainConfig(new RegTestConfig());
bridgeConstants = config.getBlockchainConfig().getCommonConstants().getBridgeConstants();
networkParameters = bridgeConstants.getBtcParams();
}
use of org.ethereum.config.blockchain.RegTestConfig in project rskj by rsksmart.
the class NodeMessageHandlerTest method setUpBeforeClass.
@BeforeClass
public static void setUpBeforeClass() throws Exception {
config = new RskSystemProperties();
config.setBlockchainConfig(new RegTestConfig());
}
use of org.ethereum.config.blockchain.RegTestConfig in project rskj by rsksmart.
the class BridgePerformanceTestCase method setUpBeforeClass.
@BeforeClass
public static void setUpBeforeClass() throws Exception {
config = new RskSystemProperties();
config.setBlockchainConfig(new RegTestConfig());
bridgeConstants = config.getBlockchainConfig().getCommonConstants().getBridgeConstants();
networkParameters = bridgeConstants.getBtcParams();
}
use of org.ethereum.config.blockchain.RegTestConfig in project rskj by rsksmart.
the class RemascProcessMinerFeesTest method setUpBeforeClass.
@BeforeClass
public static void setUpBeforeClass() throws Exception {
config = new RskSystemProperties();
config.setBlockchainConfig(new RegTestConfig());
remascConfig = new RemascConfigFactory(RemascContract.REMASC_CONFIG).createRemascConfig("regtest");
accountsAddressesUpToD = new LinkedList<>();
accountsAddressesUpToD.add(coinbaseA.getBytes());
accountsAddressesUpToD.add(coinbaseB.getBytes());
accountsAddressesUpToD.add(coinbaseC.getBytes());
accountsAddressesUpToD.add(coinbaseD.getBytes());
}
Aggregations