Skip to content

Commit

Permalink
BaseJsonRpcTool: rename local var to sslContext
Browse files Browse the repository at this point in the history
  • Loading branch information
msgilligan committed Sep 20, 2023
1 parent 912be63 commit d678c7e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -85,8 +85,8 @@ public void run(CommonsCLICall call) {
if (call.line.hasOption("V1")) {
jsonRpcVersion = JsonRpcMessage.Version.V1;
}
SSLContext sslSocketFactory = sslContext(call.line);
AbstractRpcClient client = call.rpcClient(sslSocketFactory);
SSLContext sslContext = sslContext(call.line);
AbstractRpcClient client = call.rpcClient(sslContext);
CliParameterParser parser = new CliParameterParser(jsonRpcVersion, client.getMapper());
JsonRpcRequest request = parser.parse(args);
JsonRpcResponse<JsonNode> response;
Expand Down

0 comments on commit d678c7e

Please sign in to comment.