From f9fdfdaaaeb4035266c3df0e883a63dd4874a56c Mon Sep 17 00:00:00 2001 From: Nischal Sharma Date: Wed, 1 May 2024 15:27:33 +0530 Subject: [PATCH] GethGreeterTest fix Signed-off-by: Nischal Sharma --- src/main/kotlin/org/web3j/container/ServiceBuilder.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/kotlin/org/web3j/container/ServiceBuilder.kt b/src/main/kotlin/org/web3j/container/ServiceBuilder.kt index 8131f1d..2fc69d9 100644 --- a/src/main/kotlin/org/web3j/container/ServiceBuilder.kt +++ b/src/main/kotlin/org/web3j/container/ServiceBuilder.kt @@ -66,7 +66,7 @@ class ServiceBuilder { fun build(): GenericService { return when (type) { NodeType.BESU -> BesuContainer(version, resourceFiles, hostFiles, genesisPath, servicePort) - NodeType.GETH -> GethContainer("v1.13.10", resourceFiles, hostFiles, genesisPath, servicePort) + NodeType.GETH -> GethContainer("v1.13.15", resourceFiles, hostFiles, genesisPath, servicePort) NodeType.EMBEDDED -> { if (genesisPath == "dev") EmbeddedService(Configuration(Address(selfAddress), 10), PassthroughTracer())