Skip to content

Commit 5973c2e

Browse files
committed
fix: 'submit order' log
1 parent 2c98ea2 commit 5973c2e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/submitter/queues/eval-queue.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export class EvalQueue extends ProcessingQueue<EvalOrder, SubmitOrder> {
7979
};
8080

8181
if (success) {
82-
if (result?.gasLimit != 0) {
82+
if (result?.gasLimit != null && result.gasLimit > 0) {
8383
this.logger.debug(
8484
orderDescription,
8585
`Successful bounty evaluation: submit order.`,

0 commit comments

Comments
 (0)