File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1+ import type { Address } from "viem" ;
12import { parseEther } from "viem" ;
23
34import type { CreditManagerState , GearboxSDK , ILogger } from "../sdk" ;
@@ -12,7 +13,7 @@ import { createAnvilClient } from "./createAnvilClient";
1213
1314export async function setLTZero (
1415 sdk : GearboxSDK ,
15- cm : CreditManagerState ,
16+ cm : CreditManagerState & { address : Address } ,
1617 logger ?: ILogger ,
1718) : Promise < void > {
1819 const aclAddr = await sdk . provider . publicClient . readContract ( {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import { createAnvilClient } from "./createAnvilClient";
1818 */
1919export async function setLTs (
2020 sdk : GearboxSDK ,
21- cm : CreditManagerState ,
21+ cm : CreditManagerState & { address : Address } ,
2222 newLTs : Record < Address , number > ,
2323 logger ?: ILogger ,
2424) : Promise < void > {
You can’t perform that action at this time.
0 commit comments