We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7d51814 commit f0d1ed1Copy full SHA for f0d1ed1
src/services/liquidate/SingularPartialLiquidator.ts
@@ -88,7 +88,8 @@ export default class SingularPartialLiquidator extends SingularLiquidator<Partia
88
break;
89
}
90
default: {
91
- if (cm.name.toLowerCase().includes("nexo")) {
+ // identifying nexo (aka k3) credit managers
92
+ if (cm.name.toLowerCase().includes("k3")) {
93
nexoLiquidator.addCreditManager(cm);
94
this.#liquidatorForCM[cm.creditManager.address] = nexoLiquidator;
95
} else {
0 commit comments