Skip to content

Commit

Permalink
Merge pull request ccxt#9542 from ndubel/patch-118
Browse files Browse the repository at this point in the history
bitmart parseTransaction typo fix
  • Loading branch information
kroitor authored Jul 10, 2021
2 parents e05cf1f + 7c6ca9d commit af173ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/bitmart.js
Original file line number Diff line number Diff line change
Expand Up @@ -2218,7 +2218,7 @@ module.exports = class bitmart extends Exchange {
id = depositId;
}
const amount = this.safeNumber (transaction, 'arrival_amount');
const timestamp = this.safeInteger (transaction, 'tapply_timeime');
const timestamp = this.safeInteger (transaction, 'apply_time');
const currencyId = this.safeString (transaction, 'currency');
const code = this.safeCurrencyCode (currencyId, currency);
const status = this.parseTransactionStatus (this.safeString (transaction, 'status'));
Expand Down

0 comments on commit af173ba

Please sign in to comment.