chore: bump ChainTxData for mainnet and testnet (#4961)

mainnet
```
getchaintxstats
{
  "time": 1660074878,
  "txcount": 43702293,
  "window_final_block_hash": "0000000000000002ee5a0d2caa3f78cd630ece1a12ce74f7a8146eb6689b1b66",
  "window_final_block_height": 1718597,
  "window_block_count": 17280,
  "window_tx_count": 476084,
  "window_interval": 2724994,
  "txrate": 0.174710109453452
}
```

testnet
```
> dash-cli getblockhash 771537
0000028ce7bc90ddaa75703bbe576b8821e470b4b98bbe13be81eb79546e111f
> dash-cli getchaintxstats 17280 0000028ce7bc90ddaa75703bbe576b8821e470b4b98bbe13be81eb79546e111f
{
  "time": 1659215338,
  "txcount": 5579961,
  "window_final_block_hash": "0000028ce7bc90ddaa75703bbe576b8821e470b4b98bbe13be81eb79546e111f",
  "window_final_block_height": 771537,
  "window_block_count": 17280,
  "window_tx_count": 43514,
  "window_interval": 2428572,
  "txrate": 0.01791752519587642
}
```
This commit is contained in:
PastaPastaPasta 2022-08-10 18:55:59 -04:00 committed by GitHub
parent 8a4b9c66a9
commit 91047566a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -360,10 +360,10 @@ public:
}; };
chainTxData = ChainTxData{ chainTxData = ChainTxData{
1617874573, // * UNIX timestamp of last known number of transactions (Block 1450962) 1660074878, // * UNIX timestamp of last known number of transactions (Block 1718597)
34709765, // * total number of transactions between genesis and that timestamp 43702293, // * total number of transactions between genesis and that timestamp
// (the tx=... number in the ChainStateFlushed debug.log lines) // (the tx=... number in the ChainStateFlushed debug.log lines)
0.3 // * estimated number of transactions per second after that timestamp 0.175 // * estimated number of transactions per second after that timestamp
}; };
} }
}; };
@ -558,10 +558,10 @@ public:
}; };
chainTxData = ChainTxData{ chainTxData = ChainTxData{
1617874832, // * UNIX timestamp of last known number of transactions (Block 477483) 1659215338, // * UNIX timestamp of last known number of transactions (Block 771537)
4926985, // * total number of transactions between genesis and that timestamp 5579961, // * total number of transactions between genesis and that timestamp
// (the tx=... number in the ChainStateFlushed debug.log lines) // (the tx=... number in the ChainStateFlushed debug.log lines)
0.01 // * estimated number of transactions per second after that timestamp 0.018 // * estimated number of transactions per second after that timestamp
}; };
} }
}; };