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

Commit 0160610

Browse files
committed
fix: base
1 parent 67b94d8 commit 0160610

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tasks/chain-specific/base.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ task("market:base:rsr-ion-rewards", "Sets caps on a market").setAction(
2121

2222

2323
const comptrollerContract = await viem.getContractAt("IonicComptroller", comptroller as Address);
24-
const tx = await comptrollerContract.addNonAccruingFlywheel("0x52f8074831f37e9698acaed2b27387d425f585a9");
24+
const tx = await comptrollerContract.write.addNonAccruingFlywheel(["0x52f8074831f37e9698acaed2b27387d425f585a9"]);
25+
console.log("tx: ", tx);
2526
await publicClient.waitForTransactionReceipt({ hash: tx });
2627

2728
/*

0 commit comments

Comments
 (0)