Skip to content

Commit cda5b9d

Browse files
committed
- Key Gen Transactions are now send more aggressivly.
- Instead of waiting 3 Blocks they are send immeadially (risking they get reverted since the State DB of clients is not up to date) + version update
1 parent c333637 commit cda5b9d

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## Diamond Node Software 0.12.2
2+
3+
- [Hotfix: Nodes not fast enough to write parts (keygen)](https://github.com/DMDcoin/diamond-node/issues/280)
4+
5+
## Diamond Node Software 0.12.1
6+
7+
- Logging improvements
8+
- Fixed a bug, where handshakes, that get upgraded to sessions, deregister there stream.
9+
10+
111
## Diamond Node Software 0.12.0
212

313
- New Versioning Scheme: Since Open Ethereum did not get a new update, diamond-node will not mention 3.3.5 anymore

Cargo.lock

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

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
description = "Diamond Node"
33
name = "diamond-node"
44
# NOTE Make sure to update util/version/Cargo.toml as well
5-
version = "0.12.1"
5+
version = "0.12.2"
66
license = "GPL-3.0"
77
authors = [
88
"bit.diamonds developers",

crates/ethcore/src/engines/hbbft/keygen_transactions.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ impl From<CallError> for KeyGenError {
5757
}
5858
}
5959

60-
static KEYGEN_TRANSACTION_SEND_DELAY: u64 = 3;
60+
static KEYGEN_TRANSACTION_SEND_DELAY: u64 = 0;
6161
static KEYGEN_TRANSACTION_RESEND_DELAY: u64 = 10;
6262

6363
impl KeygenTransactionSender {

crates/util/version/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "parity-version"
33
# NOTE: this value is used for OpenEthereum version string (via env CARGO_PKG_VERSION)
4-
version = "0.12.1"
4+
version = "0.12.2"
55
authors = [
66
"bit.diamonds developers",
77
"OpenEthereum developers",

0 commit comments

Comments
 (0)