debug
This commit is contained in:
parent
2b4b9d3cfe
commit
1ef510e457
1 changed files with 6 additions and 0 deletions
|
|
@ -101,6 +101,12 @@ async function waitForDb() {
|
|||
"/api/find_outs_in_recent_blocks"
|
||||
], requestsLimiter);
|
||||
|
||||
app.use("*", (req, res, next) => {
|
||||
console.log(`Request path: ${req.path}`);
|
||||
next();
|
||||
|
||||
});
|
||||
|
||||
app.get('/api/find_outs_in_recent_blocks', exceptionHandler(async (req, res) => {
|
||||
const address = req.query.address;
|
||||
const viewkey = req.query.viewkey;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue