diff --git a/docs/release-notes/release-notes-7.x.md b/docs/release-notes/release-notes-7.x.md index 912bd7207..8167341bf 100644 --- a/docs/release-notes/release-notes-7.x.md +++ b/docs/release-notes/release-notes-7.x.md @@ -19,6 +19,8 @@ v7.x Release notes * [Wallet CLI (hsw-cli)](#wallet-cli-hsw-cli) + [hs-client wallet](#hs-client-wallet) * [Changelog](#changelog) +- [v7.0.1](#v701) + * [Changelog](#changelog-1) @@ -283,4 +285,8 @@ The following methods have been deprecated - \[[`4e87fb1d`](https://github.com/handshake-org/hsd/commit/4e87fb1d)] - [#850](https://github.com/handshake-org/hsd/pull/850) - **script**: add redundant tests to math ops. - (@nodech - Nodari Chkuaselidze) - \[[`ab611036`](https://github.com/handshake-org/hsd/commit/ab611036)] - [#849](https://github.com/handshake-org/hsd/pull/849) - **pkg**: ci no longer update npm on build. - (@nodech - Nodari Chkuaselidze) - \[[`61ae19c2`](https://github.com/handshake-org/hsd/commit/61ae19c2)] - [#844](https://github.com/handshake-org/hsd/pull/844) - **docs**: backport release schedule and v6.x notes. - (@nodech - Nodari Chkuaselidze) - - \[[`9b70c294`](https://github.com/handshake-org/hsd/commit/9b70c294)] - [#910](https://github.com/handshake-org/hsd/pull/844) - **net**: remove unstable seed. (@nodech - Nodari Chkuaselidze) + - \[[`9b70c294`](https://github.com/handshake-org/hsd/commit/9b70c294)] - [#910](https://github.com/handshake-org/hsd/pull/910) - **net**: remove unstable seed. (@nodech - Nodari Chkuaselidze) + +# v7.0.1 +## Changelog + - \[[`36899e2a`](https://github.com/handshake-org/hsd/commit/9b70c294)] - [#914](https://github.com/handshake-org/hsd/pull/914) - **net**: Add checkpoint between 160k and 225k. (@nodech - Nodari Chkuaselidze) diff --git a/lib/protocol/networks.js b/lib/protocol/networks.js index c73963e77..6f3765456 100644 --- a/lib/protocol/networks.js +++ b/lib/protocol/networks.js @@ -82,6 +82,8 @@ main.brontidePort = 44806; /** * Checkpoint block list. + * NOTE: The number of blocks between checkpoints needs to be lower than + * MAX_BLOCK_REQUEST (50k). * @const {Object} */ @@ -110,6 +112,8 @@ main.checkpointMap = { '0000000000000005ee5106df9e48bcd232a1917684ac344b35ddd9b9e4101096', 'hex'), 160000: Buffer.from( '00000000000000021e723ce5aedc021ab4f85d46a6914e40148f01986baa46c9', 'hex'), + 200000: Buffer.from( + '000000000000000181ebc18d6c34442ffef3eedca90c57ca8ecc29016a1cfe16', 'hex'), 225000: Buffer.from( '00000000000000021f0be013ebad018a9ef97c8501766632f017a778781320d5', 'hex') }; diff --git a/package-lock.json b/package-lock.json index 7843b0399..192545fcd 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "hsd", - "version": "7.0.0", + "version": "7.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "hsd", - "version": "7.0.0", + "version": "7.0.1", "license": "MIT", "dependencies": { "@handshake-org/bfilter": "~2.3.0", diff --git a/package.json b/package.json index fa7e17acb..0da80f0f6 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hsd", - "version": "7.0.0", + "version": "7.0.1", "description": "Cryptocurrency bike-shed", "license": "MIT", "repository": "git://github.com/handshake-org/hsd.git",