Merge pull request #792 from embark-framework/feature/ens-configured-only-once

Ens config is run only once
This commit is contained in:
Iuri Matias 2018-09-07 18:48:06 -04:00 committed by GitHub
commit 2a41c7c310
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ class ENS {
}
registerEvents() {
this.embark.registerActionForEvent("contracts:deploy:afterAll", this.setProviderAndRegisterDomains.bind(this));
this.events.once("contracts:deploy:afterAll", this.setProviderAndRegisterDomains.bind(this));
this.events.setCommandHandler("storage:ens:associate", this.associateStorageToEns.bind(this));
}