fix(copypasta): syntax error fixed
This commit is contained in:
parent
bd3d51b9f2
commit
320a8037cc
1 changed files with 4 additions and 4 deletions
|
|
@ -160,10 +160,6 @@ exports.configure = function configure(config) {
|
||||||
if (newTrader === null) stopTrader();
|
if (newTrader === null) stopTrader();
|
||||||
else startTrader();
|
else startTrader();
|
||||||
}
|
}
|
||||||
|
|
||||||
// NOTE: temp solution
|
|
||||||
if (temporaryName === null)
|
|
||||||
temporaryName = require('./temporary_name');
|
|
||||||
);
|
);
|
||||||
|
|
||||||
// ID VERIFIER [optional] configure (or load)
|
// ID VERIFIER [optional] configure (or load)
|
||||||
|
|
@ -171,6 +167,10 @@ exports.configure = function configure(config) {
|
||||||
idVerifierPlugin,
|
idVerifierPlugin,
|
||||||
'idVerifier'
|
'idVerifier'
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// NOTE: temp solution
|
||||||
|
if (temporaryName === null)
|
||||||
|
temporaryName = require('./temporary_name');
|
||||||
};
|
};
|
||||||
exports.getCachedConfig = function getCachedConfig() {
|
exports.getCachedConfig = function getCachedConfig() {
|
||||||
return cachedConfig;
|
return cachedConfig;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue