From 82fe54b90ab6f94b320d0de1ae49e769e9bd8c03 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Fri, 12 May 2017 13:58:05 +0200 Subject: [PATCH] Fix string interpolation --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 1c021d0..19c4e2b 100644 --- a/index.js +++ b/index.js @@ -49,7 +49,7 @@ const Web3 = require('web3'); getBalance().then(balance => { if (balance <= 0) { - messageRoom('Yo gang, I\m broke! Please drop me some ETH to ${hubotWalletAddress}. kthxbai.'); + messageRoom(`Yo gang, I\m broke! Please drop me some ETH to ${hubotWalletAddress}. kthxbai.`); } });