Skip to content
This repository has been archived by the owner on Jan 24, 2022. It is now read-only.

Commit

Permalink
Update status checker in order to use App to fetch proxies
Browse files Browse the repository at this point in the history
  • Loading branch information
facuspagnuolo committed Sep 19, 2018
1 parent 4194c54 commit b242825
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/models/status/StatusChecker.js
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ export default class StatusChecker {
const implementationsInfo = await this._fetchOnChainImplementations()
const app = await this.app();
const filter = new EventsFilter()
const proxyEvents = await filter.call(app.factory, 'ProxyCreated')
const proxyEvents = await filter.call(app, 'ProxyCreated')
const proxiesInfo = []
await Promise.all(proxyEvents.map(async event => {
const address = event.args.proxy
Expand Down

0 comments on commit b242825

Please sign in to comment.