|
|
@@ -150,7 +150,7 @@ module.exports = class LpLib {
|
|
|
// 生成所有lp的hash
|
|
|
const hashList = this.getHashListByLpList(lpList)
|
|
|
// 以段为单位,更新r0、r1。每一段有SIZE个元素
|
|
|
- const SIZE = 2000
|
|
|
+ const SIZE = 600
|
|
|
for (let from = 0; from < hashList.length; from += SIZE) {
|
|
|
logger.debug(`${from}, ${hashList.length}`)
|
|
|
|
|
|
@@ -164,6 +164,9 @@ module.exports = class LpLib {
|
|
|
const lp = lpList[index]
|
|
|
const relativeIndex = index % SIZE
|
|
|
|
|
|
+ lp.appendTimestamp = undefined
|
|
|
+ lp.updateTimestamp = undefined
|
|
|
+
|
|
|
lp.r0Str = r0s[relativeIndex]
|
|
|
lp.r0 = parseInt(lp.r0Str)
|
|
|
|