Skip to content

Commit

Permalink
fix: delete code
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkAfCod committed Jan 30, 2024
1 parent a31db02 commit bcfe915
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 248 deletions.
7 changes: 0 additions & 7 deletions hildr-node/src/main/java/io/optimism/rpc/RpcServer.java
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
import io.vertx.core.http.HttpServer;
import io.vertx.core.http.HttpServerOptions;
import io.vertx.core.http.HttpServerRequest;
import io.vertx.core.http.ServerWebSocket;
import io.vertx.ext.web.Route;
import io.vertx.ext.web.Router;
import io.vertx.ext.web.handler.BodyHandler;
Expand Down Expand Up @@ -84,7 +83,6 @@ public RpcServer(final Config config) {
/** Start. */
public void start() {
this.httpServer = vertx.createHttpServer(getHttpServerOptions(config));
httpServer.webSocketHandler(webSocketHandler());
httpServer.connectionHandler(connectionHandler());

CompletableFuture<Void> future = new CompletableFuture<>();
Expand Down Expand Up @@ -149,11 +147,6 @@ private Handler<HttpConnection> connectionHandler() {
};
}

private Handler<ServerWebSocket> webSocketHandler() {
Handler<ServerWebSocket> o = null;
return o;
}

private HttpServerOptions getHttpServerOptions(final Config config) {
final HttpServerOptions httpServerOptions = new HttpServerOptions()
.setHost("0.0.0.0")
Expand Down
241 changes: 0 additions & 241 deletions hildr-node/src/test/java/io/optimism/engine/EngineApiRequestTest.java

This file was deleted.

0 comments on commit bcfe915

Please sign in to comment.