stress testing; add mock-ticker

This commit is contained in:
Josh Harvey 2017-07-18 08:12:01 +03:00
parent ad66fe1b43
commit 272405b4b1
5 changed files with 30 additions and 9 deletions

View file

@ -0,0 +1,12 @@
const BN = require('../../../bn')
function ticker (account, fiatCode, cryptoCode) {
return Promise.resolve({
rates: {
ask: BN(105),
bid: BN(100)
}
})
}
module.exports = {ticker}