Skip to content

Commit ef1bf0b

Browse files
committed
fixing typos
1 parent 69eb37f commit ef1bf0b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Below are the available endpoints for each table.
186186
{
187187
"ip_address": "string",
188188
"wallet_address": "string",
189-
"github_username": "string"
189+
"github_userid": "string"
190190
}
191191
```
192192
- **Curl Command**:

src/routes/rateLimitRoute.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ router.post('/rate-limits-combo', async (req, res, next) => {
5959

6060
// Validate the input
6161
if (!ip_address || !wallet_address) {
62-
return res.status(400).json({ message: 'All fields (ip_address, wallet_address, github_username) are required.' });
62+
return res.status(400).json({ message: 'All fields (ip_address, wallet_address) are required.' });
6363
}
6464

6565
try {

0 commit comments

Comments
 (0)