Skip to content

Commit 87e48a7

Browse files
authored
fix bug in function setMarketBorrowRate of class AaveV2Fixture (#194)
Co-authored-by: Dan Liu <[email protected]>
1 parent 402b746 commit 87e48a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

utils/fixtures/aaveV2Fixture.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export class AaveV2Fixture {
234234
}
235235

236236
public async setMarketBorrowRate(asset: Address, rate: BigNumberish): Promise<void> {
237-
this.lendingRateOracle.setMarketBorrowRate(asset, rate);
237+
await this.lendingRateOracle.setMarketBorrowRate(asset, rate);
238238
}
239239

240240
public getForkedAaveLendingPoolAddressesProvider(): AaveV2LendingPoolAddressesProvider {

0 commit comments

Comments
 (0)