Skip to content

Commit 8ecd8d6

Browse files
author
Micah Riggan
committed
fix(node): config should use merge, findOneAndUpdate should return new
lodash merge is more in mind with the goal of config's setup. There is an issue with using the state model's syncing node initially, likely do the original data being returned, which would result in an error
1 parent 766005d commit 8ecd8d6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

packages/bitcore-node/src/config.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import { homedir, cpus } from 'os';
22
import parseArgv from './utils/parseArgv';
33
import { ConfigType } from './types/Config';
4+
import * as _ from 'lodash';
45
let program = parseArgv([], ['config']);
56

67
function findConfig(): ConfigType | undefined {
@@ -76,7 +77,7 @@ const Config = function(): ConfigType {
7677
};
7778

7879
let foundConfig = findConfig();
79-
Object.assign(config, foundConfig, {});
80+
config = _.merge(config, foundConfig, {});
8081
if (!Object.keys(config.chains).length) {
8182
Object.assign(config.chains, {
8283
BTC: {

packages/bitcore-node/src/models/state.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export class StateModel extends BaseModel<IState> {
2020
return this.collection.findOneAndUpdate(
2121
{},
2222
{ $setOnInsert: { created: new Date()}},
23-
{ upsert: true }
23+
{ upsert: true, returnOriginal: false }
2424
);
2525
}
2626

0 commit comments

Comments
 (0)