Skip to content
This repository has been archived by the owner on Aug 28, 2019. It is now read-only.

Commit

Permalink
fix: formatting of getbalance response (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael1011 authored Mar 21, 2019
1 parent 08a3147 commit 1ce5b8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/notifications/CommandHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ class CommandHandler {
const { localBalance, remoteBalance } = balance.lightningBalance;

// tslint:disable-next-line:prefer-template
message += 'Channels:\n' +
` Local: ${satoshisToCoins(localBalance)} ${symbol}` +
message += '\n\nChannels:\n' +
` Local: ${satoshisToCoins(localBalance)} ${symbol}\n` +
` Remote: ${satoshisToCoins(remoteBalance)} ${symbol}`;
}
});
Expand Down

0 comments on commit 1ce5b8c

Please sign in to comment.