Skip to content
This repository has been archived by the owner on Sep 4, 2020. It is now read-only.

Commit

Permalink
Returning balances itself, fix #3
Browse files Browse the repository at this point in the history
  • Loading branch information
Genar Trias Ortiz committed Dec 5, 2017
1 parent fc606a8 commit 5c21008
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions server/models/balance.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import bittrex from 'node-bittrex-api'
import fixtures from '../fixtures/balances.json'

module.exports = function (Balance) {
Balance.getBalances = (cb) => {
Expand All @@ -11,7 +10,7 @@ module.exports = function (Balance) {
cb(err)
}

cb(null, fixtures)
cb(null, data)
})
}

Expand Down

0 comments on commit 5c21008

Please sign in to comment.