Hi,
As we know transaction fees for a particular block get credited to the harvester’s account. But I tried to cross-check it and I can’t see any balance changes in harvester’s account for that block height.
Let’s take an example of block height 30000,
From http://chain.nem.ninja/#/block/30000, we can see total fees are 72.000000 which should be credited to this harvester’s account NBMEOTKPR7ZP36J5MU4TKTTLXREWZLCAGEUZTYM6
Now if I try to get historical account data for this address at 30000 block height with the following api,
curl --location --request GET ‘http://hugealice.nem.ninja:7890/account/historical/get?address=NBMEOTKPR7ZP36J5MU4TKTTLXREWZLCAGEUZTYM6&startHeight=30000&endHeight=30000&increment=1’
Response is,
{
“data”: [
{
“pageRank”: 0.0,
“address”: “NBMEOTKPR7ZP36J5MU4TKTTLXREWZLCAGEUZTYM6”,
“balance”: 0,
“importance”: 0.0,
“vestedBalance”: 0,
“unvestedBalance”: 0,
“height”: 30000
}
]
}
where Balance is 0.
What’s wrong here? Am I checking it in the wrong way? Or what else?
Please help. I want to clear this asap.