Skip to content

Commit 509184c

Browse files
Fix modularized header in test module (0.127) (#10800)
Fix modularized header in test module (#10797) Make test module be able to pass Is-Modularized:false header for contracts/call when modularized not enabled in test module Signed-off-by: Kristiyan Selveliev <[email protected]> Signed-off-by: Steven Sheehy <[email protected]> Co-authored-by: Kristiyan Selveliev <[email protected]>
1 parent 3035c48 commit 509184c

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

hedera-mirror-test/src/test/java/com/hedera/mirror/test/e2e/acceptance/client/MirrorNodeClient.java

+2-4
Original file line numberDiff line numberDiff line change
@@ -266,10 +266,8 @@ public NetworkExchangeRateSetResponse getExchangeRates() {
266266
}
267267

268268
public ContractCallResponse contractsCall(ContractCallRequest request) {
269-
Map<String, String> headers = Collections.emptyMap();
270-
if (web3Properties.isModularizedServices()) {
271-
headers = Collections.singletonMap("Is-Modularized", "true");
272-
}
269+
Map<String, String> headers =
270+
Collections.singletonMap("Is-Modularized", String.valueOf(web3Properties.isModularizedServices()));
273271
return callPostRestEndpoint("/contracts/call", ContractCallResponse.class, request, headers);
274272
}
275273

0 commit comments

Comments
 (0)