Commit eb9bd35a authored by mdj33's avatar mdj33 Committed by vipwzw

keep same as main filter

parent 1cc69ef8
......@@ -85,8 +85,8 @@ func FilterTxsForPara(title string, main *types.BlockDetail) []*types.Transactio
i = endIdx - 1
continue
}
//单独的paracross tx 如果主链执行失败也要排除
if main.Block.Height >= forkHeight && !checkReceiptExecOk(main.Receipts[i]) {
//单独的paracross tx 如果主链执行失败也要排除, 6.2fork原因 没有排除 非user.p.xx.paracross的平行链交易
if main.Block.Height >= forkHeight && bytes.HasSuffix(tx.Execer, []byte(pt.ParaX)) && !checkReceiptExecOk(main.Receipts[i]) {
continue
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment