Skip to content

Commit

Permalink
chaincfg: Update assume valid for release.
Browse files Browse the repository at this point in the history
This updates the assumed valid block for the main and test networks as
follows:

mainnet: 00000000000000008e50a3c18725d7272ec0057999a64aa62c15f398ffb7a0d7
testnet: 00000000787986d95cef3b42beee6cc3c8065f6e5338e17854b1ff4d16b6a396
  • Loading branch information
davecgh committed Jun 7, 2023
1 parent 4f2be61 commit e3c7e5b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions chaincfg/mainnetparams.go
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ func MainNetParams() *Params {
// forks rejection checkpoint. This is intended to be updated
// periodically with new releases.
//
// Block 00000000000000001251efb83ad1a5c71351b50fe9195f009cf0bf5a7cd99d52
// Height: 606000
AssumeValid: *newHashFromStr("00000000000000001251efb83ad1a5c71351b50fe9195f009cf0bf5a7cd99d52"),
// Block 00000000000000008e50a3c18725d7272ec0057999a64aa62c15f398ffb7a0d7
// Height: 766600
AssumeValid: *newHashFromStr("00000000000000008e50a3c18725d7272ec0057999a64aa62c15f398ffb7a0d7"),

// MinKnownChainWork is the minimum amount of known total work for the
// chain at a given point in time. This is intended to be updated
Expand Down
6 changes: 3 additions & 3 deletions chaincfg/testnetparams.go
Original file line number Diff line number Diff line change
Expand Up @@ -131,9 +131,9 @@ func TestNet3Params() *Params {
// forks rejection checkpoint. This is intended to be updated
// periodically with new releases.
//
// Block 00000000d64ceb1a686315ed56235e9a6838e3a22e9ec9bd92c2e04c09e0778b
// Height: 807905
AssumeValid: *newHashFromStr("00000000d64ceb1a686315ed56235e9a6838e3a22e9ec9bd92c2e04c09e0778b"),
// Block 00000000787986d95cef3b42beee6cc3c8065f6e5338e17854b1ff4d16b6a396
// Height: 1138320
AssumeValid: *newHashFromStr("00000000787986d95cef3b42beee6cc3c8065f6e5338e17854b1ff4d16b6a396"),

// MinKnownChainWork is the minimum amount of known total work for the
// chain at a given point in time. This is intended to be updated
Expand Down

0 comments on commit e3c7e5b

Please sign in to comment.