Skip to content

Commit

Permalink
Fix Bitfinex fees XRP typo
Browse files Browse the repository at this point in the history
  • Loading branch information
dickenwong committed Jan 28, 2018
1 parent 5a21dab commit d88b6be
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions js/bitfinex.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ module.exports = class bitfinex extends Exchange {
'SAN': 0.1,
'DASH': 0.01,
'ETC': 0.01,
'XPR': 0.02,
'XRP': 0.02,
'YYW': 0.1,
'NEO': 0,
'ZEC': 0.1,
Expand All @@ -190,7 +190,7 @@ module.exports = class bitfinex extends Exchange {
'SAN': 0.1,
'DASH': 0.01,
'ETC': 0.01,
'XPR': 0.02,
'XRP': 0.02,
'YYW': 0.1,
'NEO': 0,
'ZEC': 0.1,
Expand Down
4 changes: 2 additions & 2 deletions php/bitfinex.php
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public function describe () {
'SAN' => 0.1,
'DASH' => 0.01,
'ETC' => 0.01,
'XPR' => 0.02,
'XRP' => 0.02,
'YYW' => 0.1,
'NEO' => 0,
'ZEC' => 0.1,
Expand All @@ -185,7 +185,7 @@ public function describe () {
'SAN' => 0.1,
'DASH' => 0.01,
'ETC' => 0.01,
'XPR' => 0.02,
'XRP' => 0.02,
'YYW' => 0.1,
'NEO' => 0,
'ZEC' => 0.1,
Expand Down
4 changes: 2 additions & 2 deletions python/ccxt/async/bitfinex.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def describe(self):
'SAN': 0.1,
'DASH': 0.01,
'ETC': 0.01,
'XPR': 0.02,
'XRP': 0.02,
'YYW': 0.1,
'NEO': 0,
'ZEC': 0.1,
Expand All @@ -197,7 +197,7 @@ def describe(self):
'SAN': 0.1,
'DASH': 0.01,
'ETC': 0.01,
'XPR': 0.02,
'XRP': 0.02,
'YYW': 0.1,
'NEO': 0,
'ZEC': 0.1,
Expand Down
4 changes: 2 additions & 2 deletions python/ccxt/bitfinex.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def describe(self):
'SAN': 0.1,
'DASH': 0.01,
'ETC': 0.01,
'XPR': 0.02,
'XRP': 0.02,
'YYW': 0.1,
'NEO': 0,
'ZEC': 0.1,
Expand All @@ -197,7 +197,7 @@ def describe(self):
'SAN': 0.1,
'DASH': 0.01,
'ETC': 0.01,
'XPR': 0.02,
'XRP': 0.02,
'YYW': 0.1,
'NEO': 0,
'ZEC': 0.1,
Expand Down

0 comments on commit d88b6be

Please sign in to comment.