Skip to content

Commit

Permalink
lbank2.fetchPublicTransactionFees response comment
Browse files Browse the repository at this point in the history
  • Loading branch information
samgermain committed Oct 10, 2022
1 parent a4a94f1 commit 5204144
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions js/lbank2.js
Original file line number Diff line number Diff line change
Expand Up @@ -1982,6 +1982,27 @@ module.exports = class lbank2 extends Exchange {
request['assetCode'] = currency['id'];
}
const response = await this.publicGetWithdrawConfigs (this.extend (request, params));
//
// {
// result: 'true',
// data: [
// {
// amountScale: '4',
// chain: 'heco',
// assetCode: 'lbk',
// min: '200',
// transferAmtScale: '4',
// canWithDraw: true,
// fee: '100',
// minTransfer: '0.0001',
// type: '1'
// },
// ...
// ],
// error_code: '0',
// ts: '1663364435973'
// }
//
const result = this.safeValue (response, 'data', []);
const withdrawFees = {};
for (let i = 0; i < result.length; i++) {
Expand Down

0 comments on commit 5204144

Please sign in to comment.