Skip to content

Commit 6aa479f

Browse files
committed
Add checkpoints after the November 2024 upgrade
Summary: As per title. Test Plan: Check the blocks against your node, run IBD. Reviewers: #bitcoin_abc, PiRK, Mengerian Reviewed By: #bitcoin_abc, PiRK, Mengerian Subscribers: Mengerian, PiRK Differential Revision: https://reviews.bitcoinabc.org/D17142
1 parent 544ca1c commit 6aa479f

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

doc/release-notes.md

+1
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@ Bitcoin ABC version 0.30.5 is now available from:
77
This release includes the following features and fixes:
88
- Additional flags "in" and "out" have been added to `-whitelist` to control whether
99
permissions apply to incoming connections and/or manual (default: incoming only).
10+
- Added a checkpoint after the November 15, 2024 eCash network upgrade.

src/networks/abc/checkpoints.cpp

+6
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,9 @@ static CCheckpointData mainNetCheckpointData = {
8282
// Lee Kuan Yew activation.
8383
{844743, BlockHash::fromHex("0000000000000000053b80210677e6821a2ac0ed73"
8484
"b949a78667e1bfb3dfa6eb")},
85+
// Augusto activation.
86+
{871168, BlockHash::fromHex("0000000000000000232d2ec92c9a2dd3a6e887dabc"
87+
"254c85f10e804239ff7274")},
8588
}};
8689

8790
static CCheckpointData testNetCheckpointData = {
@@ -132,6 +135,9 @@ static CCheckpointData testNetCheckpointData = {
132135
// Lee Kuan Yew activation.
133136
{1608805, BlockHash::fromHex("00000000000ad004602681a2458bc6304196ec483"
134137
"f336cce7d031309e4d3592d")},
138+
// Augusto activation.
139+
{1635241, BlockHash::fromHex("00000000082c7e223785dffb1f62db4ec737b8fd1"
140+
"4faaf4dfb7c5a8bbf22bd2d")},
135141
}};
136142

137143
static CCheckpointData regTestCheckpointData = {

0 commit comments

Comments
 (0)