-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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
consensus: add Istanbul BFT #166
Conversation
c6a04d9
to
981ee55
Compare
If you could rebase to the latest geth1.6 that would be great. The merge conflicts are very easy. I plan to test using quorum-tools on this branch. |
981ee55
to
98200b1
Compare
@joelburget done. |
This is really great work! Please execute the CLA which is required for merging: https://github.com/jpmorganchase/cla |
98200b1
to
4320715
Compare
Just done with latest rebasing and sending CLA. @patrickmn |
Received--thank you! |
ee4564e
to
c913474
Compare
@@ -124,7 +124,7 @@ var ( | |||
} | |||
NetworkIdFlag = cli.Uint64Flag{ | |||
Name: "networkid", | |||
Usage: "Network identifier (integer, 1=Frontier, 2=Morden (disused), 3=Ropsten, 4=Rinkeby)", | |||
Usage: "Network identifier (integer, 1=Frontier, 2=Morden (disused), 3=Ropsten, 4=Rinkeby, 5=Ottoman)", |
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.
Seems like we might want to use another (higher) number that's less likely to cause a conflict in the future?
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.
It depends on the upstream codebase. We submit the same code to geth, so if that gets merged, we are going to grab network id 5. If we eventually get a larger number, I think we can update it here accordingly.
2df6174
to
7c30f7c
Compare
7c30f7c
to
056214e
Compare
We've created a PR review guide document. |
587ae3b
to
a218568
Compare
…to support custom messages
056214e
to
67ca428
Compare
Protocol() Protocol | ||
} | ||
|
||
// Handler should be implemented is the consensus needs to handle and send peer's message |
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.
Typo? Should "is" be "if"?
Ok to close this? |
please help My environment Geth |
@AUQIB92 please don't commit on closed issues. Please open a new issue with your problem and one of the team will look into it. |
This PR is the implementation of Istanbul BFT protocol in ethereum/EIPs#650