Skip to content

Commit 8a4da8c

Browse files
committed
Release v6.1.1
2 parents 59d84bf + 18c7aab commit 8a4da8c

File tree

3 files changed

+5
-8
lines changed

3 files changed

+5
-8
lines changed

lib/blockchain/chain.js

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,11 +1006,8 @@ class Chain extends AsyncEmitter {
10061006
const ns = await view.getNameState(this.db, nameHash);
10071007

10081008
if (ns.isNull()) {
1009-
if (!covenant.isClaim() && !covenant.isOpen()) {
1010-
const error = new CriticalError('Database inconsistency.');
1011-
this.emit('abort', error);
1012-
throw error;
1013-
}
1009+
if (!covenant.isClaim() && !covenant.isOpen())
1010+
throw new Error('Database inconsistency.');
10141011

10151012
const name = covenant.get(2);
10161013
ns.set(name, height);

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hsd",
3-
"version": "6.1.0",
3+
"version": "6.1.1",
44
"description": "Cryptocurrency bike-shed",
55
"license": "MIT",
66
"repository": "git://github.com/handshake-org/hsd.git",

0 commit comments

Comments
 (0)