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

Commit

Permalink
More ts fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rahul Sethuram committed Sep 19, 2020
1 parent f6c31d5 commit 65f11a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/node/src/channel/channel.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export class ChannelService {

if (nodeFreeBalance.lt(thresholdToUse)) {
this.log.info(
`nodeFreeBalance ${nodeFreeBalance.toString()} < thresholdToUse ${thresholdToUse.toString()}, depositing to target ${requestedTarget.toString()}`,
`nodeFreeBalance ${nodeFreeBalance.toString()} < thresholdToUse ${thresholdToUse.toString()}, depositing to target ${targetToUse.toString()}`,
);
const amount = targetToUse.sub(nodeFreeBalance);
rebalanceRes = (await this.depositService.deposit(channel, amount, normalizedAssetId))!;
Expand Down

0 comments on commit 65f11a3

Please sign in to comment.