Skip to content

Commit 22215ef

Browse files
committed
Initial difficulty 2^22, BTC hash #556833
1 parent 2cdab2a commit 22215ef

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

core/block_crypt.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -838,11 +838,11 @@ namespace beam
838838
};
839839

840840
Prehistoric = {
841-
// BTC Block #556199
841+
// BTC Block #556833
842842
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
843-
0x00, 0x1d, 0x19, 0x8b, 0x75, 0x3d, 0x41, 0x4a,
844-
0xce, 0xda, 0x2b, 0x34, 0xec, 0x81, 0x2f, 0x47,
845-
0x9b, 0x92, 0x9d, 0x4d, 0xca, 0xc3, 0xd0, 0x3d,
843+
0x00, 0x25, 0x2d, 0x12, 0x33, 0xb4, 0x5d, 0xb2,
844+
0x39, 0x81, 0x47, 0x67, 0x6e, 0x16, 0x62, 0xf4,
845+
0x3c, 0x26, 0xa5, 0x26, 0xd2, 0xe2, 0x20, 0x63,
846846
};
847847
}
848848

core/block_crypt.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ namespace beam
102102
uint32_t MaxAhead_s = 60 * 15; // 15 minutes. Timestamps ahead by more than 15 minutes won't be accepted
103103
uint32_t WindowMedian0 = 25; // Timestamp for a block must be (strictly) higher than the median of preceding window
104104
uint32_t WindowMedian1 = 7; // Num of blocks taken at both endings of WindowWork, to pick medians.
105-
Difficulty Difficulty0 = Difficulty(8 << Difficulty::s_MantissaBits); // 2^8 = 256
105+
Difficulty Difficulty0 = Difficulty(22 << Difficulty::s_MantissaBits); // 2^22 = 4,194,304. For GPUs producing 7 sol/sec this is roughly equivalent to 10K GPUs.
106106
} DA;
107107

108108
struct {

0 commit comments

Comments
 (0)