Skip to content

Commit

Permalink
Filter out V6110 endpoints in EngineExchangeCapabilities
Browse files Browse the repository at this point in the history
Signed-off-by: naviechan <[email protected]>
  • Loading branch information
ensi321 committed Sep 22, 2023
1 parent 091353a commit 6da4539
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ public JsonRpcResponse syncResponse(final JsonRpcRequestContext requestContext)
.filter(e -> e.getMethodName().startsWith("engine_"))
.filter(e -> !e.equals(ENGINE_EXCHANGE_CAPABILITIES))
.filter(e -> !e.equals(ENGINE_PREPARE_PAYLOAD_DEBUG))
.filter(e -> !e.getMethodName().endsWith("6110"))
.map(RpcMethod::getMethodName)
.collect(Collectors.toList());

Expand Down

0 comments on commit 6da4539

Please sign in to comment.