removed unused methods (#7561)

Signed-off-by: Sally MacFarlane <macfarla.github@gmail.com>
pull/7574/head
Sally MacFarlane 3 months ago committed by GitHub
parent 5d3b2708bc
commit 6d33164742
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 25
      acceptance-tests/dsl/src/main/java/org/hyperledger/besu/tests/acceptance/dsl/node/configuration/BesuNodeFactory.java

@ -511,31 +511,6 @@ public class BesuNodeFactory {
return create(builder.build()); return create(builder.build());
} }
public BesuNode createQbftNodeWithTLS(final String name, final String type) throws IOException {
return create(
new BesuNodeConfigurationBuilder()
.name(name)
.miningEnabled()
.p2pTLSEnabled(name, type)
.jsonRpcConfiguration(node.createJsonRpcWithQbftEnabledConfig(false))
.webSocketConfiguration(node.createWebSocketEnabledConfig())
.devMode(false)
.genesisConfigProvider(GenesisConfigurationFactory::createQbftGenesisConfig)
.build());
}
public BesuNode createQbftNodeWithTLSJKS(final String name) throws IOException {
return createQbftNodeWithTLS(name, KeyStoreWrapper.KEYSTORE_TYPE_JKS);
}
public BesuNode createQbftNodeWithTLSPKCS12(final String name) throws IOException {
return createQbftNodeWithTLS(name, KeyStoreWrapper.KEYSTORE_TYPE_PKCS12);
}
public BesuNode createQbftNodeWithTLSPKCS11(final String name) throws IOException {
return createQbftNodeWithTLS(name, KeyStoreWrapper.KEYSTORE_TYPE_PKCS11);
}
public BesuNode createQbftNode( public BesuNode createQbftNode(
final String name, final boolean fixedPort, final DataStorageFormat storageFormat) final String name, final boolean fixedPort, final DataStorageFormat storageFormat)
throws IOException { throws IOException {

Loading…
Cancel
Save