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: {
type: [OrchCommissionSchema],
required: false,
default: null
default: []
},
latestTotalStake: {
type: [OrchStakeSchema],
required: false,
default: null
default: []
},
testScores: {
type: Object,