style(quotes): funny quotes changed to single quotes
This commit is contained in:
parent
5e77655ddd
commit
ab4970f84a
1 changed files with 2 additions and 2 deletions
|
|
@ -42,7 +42,7 @@ var sessions = {};
|
|||
// that's basically a constructor
|
||||
exports.init = function init(databaseHandle) {
|
||||
if (!databaseHandle) {
|
||||
throw new Error('`db` is required');
|
||||
throw new Error('\'db\' is required');
|
||||
}
|
||||
|
||||
db = databaseHandle;
|
||||
|
|
@ -123,7 +123,7 @@ function loadOrConfigPlugin(pluginHandle, pluginType, currency, onChangeCb) {
|
|||
|
||||
exports.configure = function configure(config) {
|
||||
if (config.exchanges.settings.lowBalanceMargin < 1) {
|
||||
throw new Error('`settings.lowBalanceMargin` has to be >= 1');
|
||||
throw new Error('\'settings.lowBalanceMargin\' has to be >= 1');
|
||||
}
|
||||
|
||||
cachedConfig = config;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue