-
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
geth upgrade 1.8.18 #639
geth upgrade 1.8.18 #639
Conversation
* swarm/network: Protocol bump (for chunk refactor) * swarm/network: Increase discovery and stream protocol version too * swarm/network: Increase priority queue cap
* ethdb: unified code comment style. * puppeth: it is unnecessary to alloc pre-funded to 256 addresses * Revert "puppeth: it is unnecessary to alloc pre-funded to 256 addresses" This reverts commit 5e04fbccf0b8aca85030af1779bb7a949033d9d8. * puppeth: fix comment typo * Revert "ethdb: unified code comment style." This reverts commit a581efb3f06a96fc7aec0bfae03c7b6d5a0c1a77. * cmd/puppeth: fix comment typo
* abi,signer: fix nil dereference in #17633 * signer/core: tiny typo fix in test error message
travis, Dockerfile, appveyor, build: bump to Go 1.11
…` (#16996) The argument is inclusive rather than exclusive, according to docs.
* swarm: fixed comment typo * eth: fixed comment typo * cmd/puppeth: fixed comment typo
* Bugfix #17216: evm loads prestate file properly now * code gofmted
Interpreter initialization is left to the PRs implementing them. Options for external interpreters are passed after a colon in the `--vm.ewasm` and `--vm.evm` switches.
common, core, light: add block age into info logs
les, light, params: update light client CHTs
* core, eth: fix dependency cycle * eth, miner: perfer to locally generated uncle
build/deb: upgrade launchpad PPA sources to Go 1.11 too
p2p/enode/node.go
Outdated
@@ -82,6 +82,20 @@ func (n *Node) UDP() int { | |||
return int(port) | |||
} | |||
|
|||
// RAFTPORT returns the RAFT PORT of the node | |||
func (n *Node) RAFTPORT() int { |
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.
The method RAFTPORT() shouldn't be in CAPS
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.
The method name for other attributes like UPD, TCP, ID and IP in p2p/enode/node.go are all in CAPS. They are following this convention for KEY names basically. I have followed the same style to keep it consistent.
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.
I think the reason why UDP
, TCP
, IP
are in CAPS because they are all acronyms and RAFTPORT
is not, hence it need not be in CAPS
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.
alright, changed it to RaftPort
params: config.go and denomination.go merged with conflicts
849eca2
params: config.go and denomination.go merged with conflicts
No description provided.