query MyQuery {
EVM(dataset: archive, network: eth) {
MinerRewards(limit: {count: 10}, orderBy: {ascending: Block_Number}) {
Reward {
Total
.....
}
Block {
Number
Time
}
}
}
}
give me duplicate entries with the same height
{
"Block": {
"Number": "4",
"Time": "2015-07-30T15:27:57Z"
},
"Reward": {
"BurntFees": "0.000000000000000000",
"Dynamic": "0.000000000000000000",
"Static": "0.000000000000000000",
"Total": "3.125000000000000000",
"TxFees": "0.000000000000000000"
}
},
{
"Block": {
"Number": "4",
"Time": "2015-07-30T15:27:57Z"
},
"Reward": {
"BurntFees": "0.000000000000000000",
"Dynamic": "0.000000000000000000",
"Static": "5.000000000000000000",
"Total": "5.156250000000000000",
"TxFees": "0.000000000000000000"
}
},
why there are 2 blocks with the same height “4”? how to resolve that? (the chain is ethereum)