fix balance notification

This commit is contained in:
Josh Harvey 2016-04-27 21:16:13 +01:00
parent ec09aaeb7d
commit 6ee2566588
2 changed files with 5 additions and 3 deletions

View file

@ -7,7 +7,7 @@ var db = require('../lib/postgresql_interface')
function getBalances () {
return [
{fiatBalance: 23.2345, fiatCode: 'USD', cryptoCode: 'BTC'},
{fiatBalance: 22, fiatCode: 'USD', cryptoCode: 'ETH'}
{fiatBalance: 23, fiatCode: 'USD', cryptoCode: 'ETH'}
]
}