diff --git a/src/renderer/components/DasboardComponents/WalletDashboardComponents/Transactiondetail.vue b/src/renderer/components/DasboardComponents/WalletDashboardComponents/Transactiondetail.vue
index d9904b9..885fe11 100644
--- a/src/renderer/components/DasboardComponents/WalletDashboardComponents/Transactiondetail.vue
+++ b/src/renderer/components/DasboardComponents/WalletDashboardComponents/Transactiondetail.vue
@@ -2,20 +2,20 @@
@@ -76,8 +76,8 @@
@@ -85,7 +85,7 @@
@@ -93,7 +93,7 @@
@@ -110,8 +110,8 @@
@@ -164,11 +164,11 @@
fetch(postData){
console.log(postData, "postData------");
var transaction_list_hash ,updated_transaction_list_hash;
- axios.post('https://beta-api.gander.tech/gettransactionbyhash', postData)
+ axios.get('https://api.gander.tech/transactionByHash/'+this.txndetaildata)
.then((response) => {
console.log(response.data.message, "response------");
- if(response.data.message){
- this.transaction = response.data.message;
+ if(response.data.data){
+ this.transaction = response.data.data[0];
}
})
.catch((error) => {
diff --git a/src/renderer/components/DasboardComponents/WalletDashboardComponents/ViewAccount/ViewAccount.vue b/src/renderer/components/DasboardComponents/WalletDashboardComponents/ViewAccount/ViewAccount.vue
index 51a0611..2d44f9c 100644
--- a/src/renderer/components/DasboardComponents/WalletDashboardComponents/ViewAccount/ViewAccount.vue
+++ b/src/renderer/components/DasboardComponents/WalletDashboardComponents/ViewAccount/ViewAccount.vue
@@ -142,11 +142,10 @@
-
-
-
-
-
+
+
+
+
{{transaction.from?transaction.from:'From'}}