Skip to content

Commit

Permalink
zb fetchBalance timestamp
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Apr 25, 2021
1 parent da89174 commit 11032bb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion js/zb.js
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,11 @@ module.exports = class zb extends Exchange {
// todo: use this somehow
// let permissions = response['result']['base'];
const balances = this.safeValue (response['result'], 'coins');
const result = { 'info': response };
const result = {
'info': response,
'timestamp': undefined,
'datetime': undefined,
};
for (let i = 0; i < balances.length; i++) {
const balance = balances[i];
// { enName: "BTC",
Expand Down

0 comments on commit 11032bb

Please sign in to comment.