Using the rune evet api by height returns duplicate data
Eg:
Start =0
Limit = 500
resInfos = [] runInfo
for {
runeInfoRes = https://open-api.unisat.io/v1/indexer/runes/event?height=840004&start=Start&limit=Limit
resInfos = resInfos.append(runeInfoRes)
if runeInfoRes.lenght < Limit{
break
}
Start += Limit
}
After the for loop is completed,
the runeInfo total data is true,
but the data has duplicate data ,This results in inaccurate total calculations and even negative numbers.
Using the rune evet api by height returns duplicate data
Eg:
After the for loop is completed,
the runeInfo total data is true,
but the data has duplicate data ,This results in inaccurate total calculations and even negative numbers.