From a3cb236b5fcdfb8dbf911b52f70bc27e093996a8 Mon Sep 17 00:00:00 2001 From: Satinder Grewal Date: Thu, 19 Jan 2017 19:29:31 +1300 Subject: [PATCH] Basilisk Mode list transaction API call fixed --- assets/scripts/dashboard.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/assets/scripts/dashboard.js b/assets/scripts/dashboard.js index 8d0de6d..8947ef5 100644 --- a/assets/scripts/dashboard.js +++ b/assets/scripts/dashboard.js @@ -900,7 +900,9 @@ function EdexGetTxList(coin) { //dataType: 'text', success: function(data, textStatus, jqXHR) { var AjaxOutputData = JSON.parse(data); //Ajax output gets the whole list of unspent coin with addresses - AjaxOutputData = AjaxOutputData.result; + if ( active_edexcoinmodecode !== 'Basilisk' ) { + AjaxOutputData = AjaxOutputData.result; + } //console.log('== Data OutPut of listtransactions =='); //console.log(AjaxOutputData);