Skip to content

Commit

Permalink
fix: review
Browse files Browse the repository at this point in the history
  • Loading branch information
eddort committed Mar 13, 2023
1 parent 958938b commit 710aaa0
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 0 additions & 1 deletion src/contracts/repository/locator/locator.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ export class LocatorService {
*/
public async getLidoAddress(blockTag: BlockTag): Promise<string> {
const lidoLocator = await this.getLidoLocatorAbiContract();
console.log("???????")
return await lidoLocator.lido({ blockTag: blockTag as any });
}
/**
Expand Down
1 change: 1 addition & 0 deletions src/contracts/repository/repository.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ export class RepositoryService {
*/
public async initCachedContracts(blockTag: BlockTag) {
await this.initCachedLidoContract(blockTag);
// order is important: deposit contract depends on dsm
await this.initCachedDSMContract(blockTag);
await this.initCachedDepositContract(blockTag);
await this.initCachedStakingRouterAbiContract(blockTag);
Expand Down

0 comments on commit 710aaa0

Please sign in to comment.