Commit a47658e0 authored by duanjinfei's avatar duanjinfei

fix erc721 case verify condition

parent 8225a065
...@@ -1233,7 +1233,7 @@ func PrReErc721TranCase(startIndex int, txCount int, testAccArr *tool.AccArrForm ...@@ -1233,7 +1233,7 @@ func PrReErc721TranCase(startIndex int, txCount int, testAccArr *tool.AccArrForm
res = false res = false
} }
log.Info("Erc721 接受者相关 To balance:", toErc721Bal.String()) log.Info("Erc721 接受者相关 To balance:", toErc721Bal.String())
if beforeToErc721Bal.Sub(beforeToErc721Bal, toErc721Bal).Cmp(big.NewInt(int64(txCount))) != 0 { if toErc721Bal.Sub(toErc721Bal, beforeToErc721Bal).Cmp(big.NewInt(int64(txCount))) != 0 {
res = false res = false
} }
for i := 0; i < txCount; i++ { for i := 0; i < txCount; i++ {
......
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