Skip to content

Commit b5dffb2

Browse files
committed
unassigned var to let
1 parent a2fdf51 commit b5dffb2

File tree

6 files changed

+7
-7
lines changed

6 files changed

+7
-7
lines changed

bot/modules/dogeTipper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const bitcoin = require('bitcoin'); //leave as const bitcoin = require('bitcoin'
55
let Regex = require('regex'),
66
config = require('config'),
77
spamchannels = config.get('moderation').botspamchannels;
8-
config = config.get('doged');
8+
let config = config.get('doged');
99
const doge = new bitcoin.Client(config); //leave as = new bitcoin.Client(config)
1010

1111
exports.commands = ['tipdoge'];

bot/modules/exampleTipper.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Simply find and replace instances below with the coin and symbol you want to use!
33
search and replace with case sensitivity!!
44
example:
5-
1. lightcoin = ethereum
5+
1. litecoin = ethereum
66
2. Litecoin = Ethereum
77
3. ltc = eth
88
4. LTC = ETH
@@ -16,7 +16,7 @@ const bitcoin = require('bitcoin'); //leave as const bitcoin = require('bitcoin'
1616
let Regex = require('regex'),
1717
config = require('config'),
1818
spamchannels = config.get('moderation').botspamchannels;
19-
config = config.get('litecoind');
19+
let config = config.get('litecoind');
2020
const litecoin = new bitcoin.Client(config); //leave as = new bitcoin.Client(config)
2121
2222
exports.commands = ['tipltc'];

bot/modules/lbryTipper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const bitcoin = require('bitcoin'); //leave as const bitcoin = require('bitcoin'
55
let Regex = require('regex'),
66
config = require('config'),
77
spamchannels = config.get('moderation').botspamchannels;
8-
config = config.get('lbryd');
8+
let config = config.get('lbryd');
99
const lbry = new bitcoin.Client(config); //leave as = new bitcoin.Client(config)
1010

1111
exports.commands = ['tiplbc'];

bot/modules/rvnTipper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const bitcoin = require('bitcoin'); //leave as const bitcoin = require('bitcoin'
55
let Regex = require('regex'),
66
config = require('config'),
77
spamchannels = config.get('moderation').botspamchannels;
8-
config = config.get('ravend');
8+
let config = config.get('ravend');
99
const raven = new bitcoin.Client(config); //leave as = new bitcoin.Client(config)
1010

1111
exports.commands = ['tiprvn'];

bot/modules/shiggsTipper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const bitcoin = require('bitcoin');
55
let Regex = require('regex'),
66
config = require('config'),
77
spamchannels = config.get('moderation').botspamchannels;
8-
config = config.get('protond');
8+
let config = config.get('protond');
99
const proton = new bitcoin.Client(config);
1010

1111
exports.commands = ['tipproton'];

bot/modules/ufoTipper.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const bitcoin = require('bitcoin');
55
let Regex = require('regex'),
66
config = require('config'),
77
spamchannels = config.get('moderation').botspamchannels;
8-
config = config.get('ufod');
8+
let config = config.get('ufod');
99
const ufo = new bitcoin.Client(config);
1010

1111
exports.commands = ['tipufo'];

0 commit comments

Comments
 (0)