-
Notifications
You must be signed in to change notification settings - Fork 33
Conversation
libby
commented
May 6, 2020
- generate genesis.json to work for 2.6.0.
- add --allow-insecure-unlock flag to geth startup params.
* generate genesis.json to work for 2.6.0. * add --allow-insecure-unlock flag to geth startup param.
@@ -238,6 +238,9 @@ spec: | |||
<%- elsif @config["quorum"]["consensus"] == "istanbul" -%> | |||
args=\" --gcmode archive --istanbul.blockperiod 3 --syncmode full --mine --minerthreads 1 \"; | |||
RPC_APIS=\"$RPC_APIS,istanbul\"; | |||
<%- end -%> | |||
<%- if @config["quorum"]["quorum"]["Quorum_Version"] == "2.6.0" -%> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to make this check as >= 2.6.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Was debating that, but thought that we would have to explicitly support and check other issues when a new version became available. But I'll add it, as it will allow support for fixes and minor version changes.
templates/quorum/genesis.json.erb
Outdated
"eip150block": 0, | ||
"eip150hash": "0x0000000000000000000000000000000000000000000000000000000000000000", | ||
"eip155block": 0, | ||
"eip158block": 0, | ||
<%-# for 2.6 maxCodeSize config has changed. -%> | ||
<%- if @config["quorum"]["quorum"]["Quorum_Version"] == "2.6.0" -%> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to make this check >= 2.6.0
templates/quorum/genesis.json.erb
Outdated
@@ -103,7 +118,18 @@ end | |||
"epoch": 30000, | |||
"policy": 0 | |||
}, | |||
<%-# for 2.6 maxCodeSize config has changed. -%> | |||
<%- if @config["quorum"]["quorum"]["Quorum_Version"] == "2.6.0" -%> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it possible to make this check >= 2.6.0
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM