Skip to content
This repository has been archived by the owner on Aug 30, 2024. It is now read-only.

Commit

Permalink
fix: processor configured from config has been ignored (#117)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexeychr authored Sep 8, 2023
1 parent 236e345 commit ed2070b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@debridge-finance/dln-taker",
"version": "2.11.1",
"version": "2.11.2",
"description": "DLN executor is the rule-based daemon service developed to automatically execute orders placed on the deSwap Liquidity Network (DLN) across supported blockchains",
"license": "GPL-3.0-only",
"author": "deBridge",
Expand Down
3 changes: 2 additions & 1 deletion src/executors/executor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,8 @@ export class Executor implements IExecutor {
}
}

const processorInitializer = processors.universalProcessor();
const processorInitializer =
chain.orderProcessor || config.orderProcessor || processors.universalProcessor();
const initializingChain = {
chain: chain.chain,
chainRpc: chain.chainRpc,
Expand Down

0 comments on commit ed2070b

Please sign in to comment.