Skip to content

Commit

Permalink
fix: add missing test endpoints
Browse files Browse the repository at this point in the history
  • Loading branch information
Romsters committed Nov 29, 2024
1 parent 8234d03 commit ea71cd5
Showing 1 changed file with 34 additions and 1 deletion.
35 changes: 34 additions & 1 deletion test_endpoints.http
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,40 @@ content-type: application/json
{
"jsonrpc": "2.0",
"id": "1",
"method": "config_setShowOnlyContractLogs",
"method": "config_setShowNodeConfig",
"params": [true]
}

###
POST http://localhost:8011
content-type: application/json

{
"jsonrpc": "2.0",
"id": "1",
"method": "config_setShowTxSummary",
"params": [true]
}

###
POST http://localhost:8011
content-type: application/json

{
"jsonrpc": "2.0",
"id": "1",
"method": "config_setShowEventLogs",
"params": [true]
}

###
POST http://localhost:8011
content-type: application/json

{
"jsonrpc": "2.0",
"id": "1",
"method": "config_setDisableConsoleLog",
"params": [true]
}

Expand Down

0 comments on commit ea71cd5

Please sign in to comment.