Init stake and commission to empty list on new monthly stats object

This commit is contained in:
Marco van Dijk 2022-05-06 17:15:23 +02:00
parent d507b77c1b
commit 34b7ec94f2

View File

@ -201,12 +201,12 @@ const MonthlyStatSchema = new mongoose.Schema({
latestCommission: { latestCommission: {
type: [OrchCommissionSchema], type: [OrchCommissionSchema],
required: false, required: false,
default: null default: []
}, },
latestTotalStake: { latestTotalStake: {
type: [OrchStakeSchema], type: [OrchStakeSchema],
required: false, required: false,
default: null default: []
}, },
testScores: { testScores: {
type: Object, type: Object,