Skip to content

Commit f0d1ed1

Browse files
committed
fix: identifying nexo credit managers
1 parent 7d51814 commit f0d1ed1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/services/liquidate/SingularPartialLiquidator.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,8 @@ export default class SingularPartialLiquidator extends SingularLiquidator<Partia
8888
break;
8989
}
9090
default: {
91-
if (cm.name.toLowerCase().includes("nexo")) {
91+
// identifying nexo (aka k3) credit managers
92+
if (cm.name.toLowerCase().includes("k3")) {
9293
nexoLiquidator.addCreditManager(cm);
9394
this.#liquidatorForCM[cm.creditManager.address] = nexoLiquidator;
9495
} else {

0 commit comments

Comments
 (0)