|
|
@@ -134,8 +134,11 @@ export class LpMaintenance {
|
|
|
const normalLpPullRst = await history.findByHashOrBlockOrDataVague('normalLp', '', '', 0, 20000)
|
|
|
if (!normalLpPullRst.state) continue
|
|
|
const normalLpList = normalLpPullRst.data
|
|
|
+ const zeroLpPullRst = await history.findByHashOrBlockOrDataVague('0', '', '', 0, 150000)
|
|
|
+ if (!zeroLpPullRst.state) continue
|
|
|
+ const zeroLpList = zeroLpPullRst.data
|
|
|
|
|
|
- const allTypeLpList: any = [].concat(topLpList).concat(lpList).concat(normalLpList)
|
|
|
+ const allTypeLpList: any = [].concat(topLpList).concat(lpList).concat(normalLpList).concat(zeroLpList)
|
|
|
const lpAddressList: any = this.generateAddressListByLpList(allTypeLpList)
|
|
|
|
|
|
// 集中拉取r0,r1并更新本地的
|