Добавлен адресс аккаунта совершившего транзакцию

This commit is contained in:
DwCay
2022-07-13 15:39:20 +03:00
parent 5eb4ee16c0
commit 9820692cd9
2 changed files with 6 additions and 2 deletions

View File

@@ -39,13 +39,17 @@ class Store {
}
fetchTransactionsInfo() {
fetchWrapper.getAuth(`http://3.125.47.101/api/account/transactions/b444b7ff3118cf2a30cbd54cfcdb8fd5d805017a?moduleID=1001&assetID=11`, {
fetchWrapper.getAuth(`http://3.125.47.101/api/account/transactions/${this.accountMadeTransaction}?moduleID=1001&assetID=11`, {
networkIdentifier: this.nodeInfo.networkIdentifier,
lastBlockID: this.nodeInfo.lastBlockID
})
.then((res)=>this.saveInfoTransactions(res))
}
get accountMadeTransaction() {
return "b444b7ff3118cf2a30cbd54cfcdb8fd5d805017a"
}
userDataFetchChange(res) {
this._userData = res;
}