Skip to content

Commit

Permalink
update msg for notification providers
Browse files Browse the repository at this point in the history
  • Loading branch information
spinegar committed Feb 15, 2018
1 parent f168c22 commit 0759a13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@ function saveMarket(market) {
}

function notifySubscribersListed(market) {
let msg = market + ' is now listed on ' + market.exchange;
let msg = market.base + ' is now listed on ' + market.exchange;
return notifySubscribers(msg);
}

function notifySubscribersTrading(market) {
let msg = market + ' is now trading on ' + market.exchange;
let msg = market.base + ' is now trading on ' + market.exchange;
return notifySubscribers(msg);
}

Expand Down

0 comments on commit 0759a13

Please sign in to comment.