Skip to content

Commit 9cf6393

Browse files
author
MarcoFalke
committed
Merge #12270: Update chainTxData for 0.16
a8c344b Update chainTxData for 0.16 (Wladimir J. van der Laan) Pull request description: Another part of the release process. Not sure I did this correctly @sipa . Output from `getchaintxstats`: mainnet: ``` { "time": 1516903077, "txcount": 295363220, "window_block_count": 4320, "window_tx_count": 7882762, "window_interval": 2242748, "txrate": 3.514778298765621 } ``` testnet: ``` { "time": 1516903490, "txcount": 17082348, "window_block_count": 4320, "window_tx_count": 227756, "window_interval": 2526261, "txrate": 0.090155371911295 } ``` Tree-SHA512: 640b564f4c55d136910ab1acb81244052735cbd10afdeb1f206d86548c3753fb3184ee0d79adfd36c87ee1c5ca283d5d333c1d9f1d23716da149ca78370c7060
2 parents 2ae7cf8 + a8c344b commit 9cf6393

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/chainparams.cpp

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -169,11 +169,11 @@ class CMainParams : public CChainParams {
169169
};
170170

171171
chainTxData = ChainTxData{
172-
// Data as of block 000000000000000000d97e53664d17967bd4ee50b23abb92e54a34eb222d15ae (height 478913).
173-
1501801925, // * UNIX timestamp of last known number of transactions
174-
243756039, // * total number of transactions between genesis and that timestamp
172+
// Data as of block 0000000000000000002d6cca6761c99b3c2e936f9a0e304b7c7651a993f461de (height 506081).
173+
1516903077, // * UNIX timestamp of last known number of transactions
174+
295363220, // * total number of transactions between genesis and that timestamp
175175
// (the tx=... number in the SetBestChain debug.log lines)
176-
3.1 // * estimated number of transactions per second after that timestamp
176+
3.5 // * estimated number of transactions per second after that timestamp
177177
};
178178
}
179179
};
@@ -260,10 +260,10 @@ class CTestNetParams : public CChainParams {
260260
};
261261

262262
chainTxData = ChainTxData{
263-
// Data as of block 00000000000001c200b9790dc637d3bb141fe77d155b966ed775b17e109f7c6c (height 1156179)
264-
1501802953,
265-
14706531,
266-
0.15
263+
// Data as of block 000000000000033cfa3c975eb83ecf2bb4aaedf68e6d279f6ed2b427c64caff9 (height 1260526)
264+
1516903490,
265+
17082348,
266+
0.09
267267
};
268268

269269
}

0 commit comments

Comments
 (0)