diff --git a/ccxt.js b/ccxt.js index 191036bd6de9..90c06c1ab3e7 100644 --- a/ccxt.js +++ b/ccxt.js @@ -16725,8 +16725,7 @@ var kuna = extend (acx, { }, parseOrder (order, market = undefined) { - let dateString = order['created_at']; - let timestamp = this.parse8601 (dateString); + let timestamp = this.parse8601 (order['created_at']); return { 'id': order['id'], 'timestamp': timestamp,