Skip to content

Commit

Permalink
1.1.66
Browse files Browse the repository at this point in the history
  • Loading branch information
cedriking committed Mar 21, 2024
1 parent 1e2637c commit 4d48c41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "arlocal",
"version": "1.1.65",
"version": "1.1.66",
"main": "./bin/app.js",
"repository": "https://github.com/textury/arlocal.git",
"author": "Cedrik <[email protected]>",
Expand Down
6 changes: 3 additions & 3 deletions src/routes/transaction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -520,10 +520,10 @@ export async function txPendingRoute(ctx: Router.RouterContext) {

const txIds = await transactionDB.getUnminedTxs();

ctx.status = 200
ctx.body = txIds
ctx.status = 200;
ctx.body = txIds;
} catch (error) {
console.error({ error })
console.error({ error });
ctx.status = 500;
ctx.body = { error: error.message };
}
Expand Down

0 comments on commit 4d48c41

Please sign in to comment.