Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

QBFT doesn't start when transition block is 0 and no other algorithm config is present #1500

Closed
antonydenyer opened this issue Sep 7, 2022 · 0 comments · Fixed by #1521
Closed

Comments

@antonydenyer
Copy link
Contributor

antonydenyer commented Sep 7, 2022

Expected behaviour

Mining to start

Actual behaviour

Mining doesn't start

Steps to reproduce the behaviour

  "config": {
    "chainId": 1337,
    "homesteadBlock": 0,
    "eip150Block": 0,
    "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
    "eip155Block": 0,
    "eip158Block": 0,
    "byzantiumBlock": 0,
    "constantinopleBlock": 0,
    "petersburgBlock": 0,
    "istanbulBlock": 0,
    "qbft": {
      "epochLength": 30000,
      "blockPeriodSeconds": 5
    },
    "isQuorum": true
  },

works

  "config": {
    "chainId": 1337,
    "homesteadBlock": 0,
    "eip150Block": 0,
    "eip150Hash": "0x0000000000000000000000000000000000000000000000000000000000000000",
    "eip155Block": 0,
    "eip158Block": 0,
    "byzantiumBlock": 0,
    "constantinopleBlock": 0,
    "petersburgBlock": 0,
    "istanbulBlock": 0,
    "transitions": [
      {
        "block": 0,
        "algorithm": "qbft",
        "epochLength": 30000,
        "blockPeriodSeconds": 5
      }
    ],
    "isQuorum": true
  },

does not work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant