From 85897a8efe5f972c7d9afb815b9b3b8d96eec890 Mon Sep 17 00:00:00 2001 From: Daria Golova Date: Thu, 30 Jun 2022 14:50:59 +0300 Subject: [PATCH] changed name of the method in store.js --- src/store/store.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/store/store.js b/src/store/store.js index 0528b0a..390588c 100644 --- a/src/store/store.js +++ b/src/store/store.js @@ -20,7 +20,7 @@ class Store { reaction(() => this.tokenKey, () => fetchWrapper.getAuth('http://3.125.47.101/api/data/account', { networkIdentifier: this.nodeInfo.networkIdentifier, lastBlockID: this.nodeInfo.lastBlockID - }).then((res) => this.userInfoFetchChange(res))) + }).then((res) => this.userDataFetchChange(res))) }; fetchCreateNewAccount() { @@ -30,7 +30,7 @@ class Store { }, [...this.encryptAccountData]).catch(()=>{}) }; - userInfoFetchChange(res) { + userDataFetchChange(res) { this._userData = res; }