Skip to content
This repository has been archived by the owner on Feb 15, 2022. It is now read-only.

Commit

Permalink
Fix: Currencies now only displayed once in verbose sell/buy log (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
crubb authored and DeviaVir committed Jun 4, 2017
1 parent dad44bc commit caf77ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ module.exports = function container (get, set, clear) {
function fc (amt, omit_currency, color_trick, do_pad) {
var str
if (isFiat()) {
str = n(amt).format('0.00') + (omit_currency ? '' : ' ' + s.currency)
str = n(amt).format('0.00')
}
else {
str = n(amt).format('0.00000000')
Expand Down Expand Up @@ -748,4 +748,4 @@ module.exports = function container (get, set, clear) {
syncBalance: syncBalance
}
}
}
}

0 comments on commit caf77ad

Please sign in to comment.