Skip to content

Commit 524ce01

Browse files
committed
Fix testnet4 block
1 parent 0f03bb8 commit 524ce01

File tree

1 file changed

+4
-8
lines changed

1 file changed

+4
-8
lines changed

protocol/src/constants.rs

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,10 @@ impl ChainAnchor {
6969

7070
// Testnet4 activation block
7171
pub const TESTNET4: fn() -> Self = || {
72-
Self::new(
73-
[
74-
0x66, 0x02, 0x57, 0xdf, 0x48, 0xcb, 0xd5, 0x82, 0xf0, 0xa8, 0x5d, 0x9e, 0xad, 0x85,
75-
0x3d, 0x68, 0x8f, 0x7a, 0x90, 0x0d, 0x56, 0x79, 0xe0, 0x63, 0x08, 0x00, 0x00, 0x00,
76-
0x00, 0x00, 0x00, 0x00,
77-
],
78-
50_000,
79-
)
72+
Self {
73+
hash: BlockHash::all_zeros(),
74+
height: 50_000,
75+
}
8076
};
8177

8278
// Testnet activation block

0 commit comments

Comments
 (0)