Skip to content

Commit

Permalink
minor tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
ConjunctiveNormalForm committed May 3, 2023
1 parent 0a349c8 commit 3eb3317
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion lib/handlers/post-order/handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,10 @@ export class PostOrderHandler extends APIGLambdaHandler<
containerInjected: { dbInterface, orderValidator },
} = params

log.info('Handling POST order request', params)
log.info(
{ encodedOrder: encodedOrder, signature: signature, chainId: chainId, quoteId: quoteId },
'Handling POST order request'
)
let decodedOrder: DutchLimitOrder

try {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"clean": "rm -rf dist cdk.out",
"watch": "tsc -w",
"test": "jest --detectOpenHandles --forceExit --testPathIgnorePatterns=integ/ dist/",
"integ-test": "jest --testPathPattern=integ/",
"integ-test": "jest --maxWorkers=1 --detectOpenHandles --testPathPattern=integ/",
"cdk": "cdk",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"lib/**/*.ts\" --write",
Expand Down

0 comments on commit 3eb3317

Please sign in to comment.