From cb3e4b67f5a4266d52c5c28240d4937e948ce26e Mon Sep 17 00:00:00 2001 From: Stefan Bratanov Date: Wed, 27 Nov 2024 09:00:35 +0000 Subject: [PATCH] change order --- .../spec/config/DelegatingSpecConfig.java | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/DelegatingSpecConfig.java b/ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/DelegatingSpecConfig.java index da606710f8a..b513c9b16bf 100644 --- a/ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/DelegatingSpecConfig.java +++ b/ethereum/spec/src/main/java/tech/pegasys/teku/spec/config/DelegatingSpecConfig.java @@ -327,6 +327,16 @@ public int getMaxChunkSize() { return specConfig.getMaxChunkSize(); } + @Override + public int getTtfbTimeout() { + return specConfig.getTtfbTimeout(); + } + + @Override + public int getRespTimeout() { + return specConfig.getRespTimeout(); + } + @Override public int getAttestationPropagationSlotRange() { return specConfig.getAttestationPropagationSlotRange(); @@ -362,16 +372,6 @@ public int getMinEpochsForBlockRequests() { return specConfig.getMinEpochsForBlockRequests(); } - @Override - public int getTtfbTimeout() { - return specConfig.getTtfbTimeout(); - } - - @Override - public int getRespTimeout() { - return specConfig.getRespTimeout(); - } - @Override public int getSubnetsPerNode() { return specConfig.getSubnetsPerNode();