Version 0.6.6
This commit is contained in:
parent
43dda632b4
commit
00aedddf2a
17
CHANGELOG.md
17
CHANGELOG.md
|
@ -1,3 +1,20 @@
|
||||||
|
2020-11-20 v0.6.6
|
||||||
|
=================
|
||||||
|
|
||||||
|
New additions:
|
||||||
|
|
||||||
|
* New RPC APIs for inspecting the internal state of the Eth1 monitor.
|
||||||
|
|
||||||
|
We've fixed:
|
||||||
|
|
||||||
|
* A fork-choice issue causing Nimbus to get stuck on a particular slot.
|
||||||
|
|
||||||
|
* A logic error causing Nimbus to vote for an incorrect Eth1 block.
|
||||||
|
|
||||||
|
* A crash during initialization when the web3 provider is refusing
|
||||||
|
to serve data (e.g. due to exceeded request quota).
|
||||||
|
|
||||||
|
|
||||||
2020-11-17 v0.6.4
|
2020-11-17 v0.6.4
|
||||||
=================
|
=================
|
||||||
|
|
||||||
|
|
|
@ -9,7 +9,8 @@ when not defined(nimscript):
|
||||||
const
|
const
|
||||||
versionMajor* = 0
|
versionMajor* = 0
|
||||||
versionMinor* = 6
|
versionMinor* = 6
|
||||||
versionBuild* = 5
|
versionBuild* = 6
|
||||||
|
|
||||||
versionBlob* = "hope" # Single word - ends up in the default graffitti
|
versionBlob* = "hope" # Single word - ends up in the default graffitti
|
||||||
|
|
||||||
useInsecureFeatures* = defined(insecure)
|
useInsecureFeatures* = defined(insecure)
|
||||||
|
|
Loading…
Reference in New Issue