From b8f9a2e2b1686766dc149edb647569972181a46f Mon Sep 17 00:00:00 2001 From: vishwas1 Date: Sat, 9 Jul 2022 23:27:45 +0530 Subject: [PATCH 1/2] fixed reef accounts not found issue --- src/components/participant/ActionInputs/ReefErc20.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/participant/ActionInputs/ReefErc20.vue b/src/components/participant/ActionInputs/ReefErc20.vue index 9f16ae3c..bfc9cd43 100644 --- a/src/components/participant/ActionInputs/ReefErc20.vue +++ b/src/components/participant/ActionInputs/ReefErc20.vue @@ -132,7 +132,7 @@ export default { Object.assign(this.value, { ...(this.data.value) }); } eventBus.$on(`disableInput${this.data._id}`, this.disableInput); - this.checkWeb3Injection(); + await this.checkWeb3Injection(); await this.invokeReef() await this.fetchAccounts() }, From 0653ecd95e931158176dc7afc5b99c2ac0e96f60 Mon Sep 17 00:00:00 2001 From: vishwas1 Date: Sat, 9 Jul 2022 23:36:02 +0530 Subject: [PATCH 2/2] smoe random commit --- src/components/participant/ActionInputs/ReefErc20.vue | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/participant/ActionInputs/ReefErc20.vue b/src/components/participant/ActionInputs/ReefErc20.vue index bfc9cd43..6389fb32 100644 --- a/src/components/participant/ActionInputs/ReefErc20.vue +++ b/src/components/participant/ActionInputs/ReefErc20.vue @@ -132,6 +132,8 @@ export default { Object.assign(this.value, { ...(this.data.value) }); } eventBus.$on(`disableInput${this.data._id}`, this.disableInput); + + // TODO: need to check if this works await this.checkWeb3Injection(); await this.invokeReef() await this.fetchAccounts()