Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Compressed logs:

## Log level options

When you configure your log level, all log items for that level and below get written to the log file. In the following table, the left column represents the the possible values you can set in your configuration.
When you configure your log level, all log items for that level and below get written to the log file. In the following table, the left column represents the possible values you can set in your configuration.

![Log Levels](https://i.stack.imgur.com/7o9Kk.png)

Expand Down
2 changes: 1 addition & 1 deletion rskj-core/src/main/java/co/rsk/crypto/Keccak256.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public byte[] getBytes() {
}

/**
* Returns an identical Sha3Hash with a copy of the the internal byte array.
* Returns an identical Sha3Hash with a copy of the internal byte array.
*/
public Keccak256 copy() {
return new Keccak256(ByteUtil.cloneBytes(bytes));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ private String getJsonWithTypedId(JsonNode jsonNodeRequest, JsonRpcIdentifiableM
// get the json representation of the response object
JsonNode jsonNodeResponse = mapper.valueToTree(response);

// set its ID with the the one that was provided in the request
// set its ID with the one that was provided in the request
((ObjectNode) jsonNodeResponse).set(ID, jsonNodeRequest.get(ID));

// creates the string json payload
Expand Down