trying to fix gen-check error

This commit is contained in:
i-norden 2023-10-19 14:42:14 -05:00
parent 82f754f31e
commit 87b8e0a8fd
2 changed files with 4 additions and 2 deletions

View File

@ -17,7 +17,7 @@
[Backup]
# When set to true disables metadata log (.lotus/kvlog). This can save disk
# space by reducing metadata redundancy.
#
#
# Note that in case of metadata corruption it might be much harder to recover
# your node if metadata log is disabled
#

View File

@ -116,7 +116,9 @@ func DefaultFullNode() *FullNode {
FilterTTL: Duration(time.Hour * 24),
MaxFilters: 100,
MaxFilterResults: 10000,
MaxFilterHeightRange: 2880, // conservative limit of one day
MaxFilterHeightRange: 2880, // conservative limit of one day
FilterThresholdSet: false, // use MaxFilterHeightRange by default
FilterThresholdEpoch: 2683348, // FEVM start epoch
},
},
}