-
Notifications
You must be signed in to change notification settings - Fork 29
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
Initialize ServerIdentities for local tests #676
Conversation
While fixing a missing test in byzcoin, I saw that the ServerIdentities are not fully initialized for local tests. As the new configuration contract in byzcoin also checks for Address and Description in the ServerIdentity, they also must be set for local tests. Once this PR is merged, the onet version should be increased.
The byzcoin contract did not correctly check for new nodes in a new proposed roster, this led to a wrong node being stored in the chain. The bcadmin did not correctly load the public files of a new node, a node to be deleted, or a node for a leader change. Both are fixed in this PR. It depends on dedis/onet#676
local.go
Outdated
@@ -487,6 +487,8 @@ func NewPrivIdentity(suite network.Suite, port int) (kyber.Scalar, *network.Serv | |||
kp := key.NewKeyPair(suite) | |||
id := network.NewServerIdentity(kp.Public, address) | |||
ServiceFactory.generateKeyPairs(id) | |||
id.Address = address |
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 useless as this is already done in NewServerIdentity
.
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 PR is getting very small ;)
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.
Kudos, SonarCloud Quality Gate passed!
|
The byzcoin contract did not correctly check for new nodes in a new proposed roster, this led to a wrong node being stored in the chain. The bcadmin did not correctly load the public files of a new node, a node to be deleted, or a node for a leader change. Both are fixed in this PR. It depends on dedis/onet#676
The byzcoin contract did not correctly check for new nodes in a new proposed roster, this led to a wrong node being stored in the chain. The bcadmin did not correctly load the public files of a new node, a node to be deleted, or a node for a leader change. Both are fixed in this PR. It depends on dedis/onet#676
The byzcoin contract did not correctly check for new nodes in a new proposed roster, this led to a wrong node being stored in the chain. The bcadmin did not correctly load the public files of a new node, a node to be deleted, or a node for a leader change. Both are fixed in this PR. It depends on dedis/onet#676
The byzcoin contract did not correctly check for new nodes in a new proposed roster, this led to a wrong node being stored in the chain. The bcadmin did not correctly load the public files of a new node, a node to be deleted, or a node for a leader change. Both are fixed in this PR. It depends on dedis/onet#676
The byzcoin contract did not correctly check for new nodes in a new proposed roster, this led to a wrong node being stored in the chain. The bcadmin did not correctly load the public files of a new node, a node to be deleted, or a node for a leader change. Both are fixed in this PR. It depends on dedis/onet#676
The byzcoin contract did not correctly check for new nodes in a new proposed roster, this led to a wrong node being stored in the chain. The bcadmin did not correctly load the public files of a new node, a node to be deleted, or a node for a leader change. Both are fixed in this PR. It depends on dedis/onet#676
The byzcoin contract did not correctly check for new nodes in a new proposed roster, this led to a wrong node being stored in the chain. The bcadmin did not correctly load the public files of a new node, a node to be deleted, or a node for a leader change. Both are fixed in this PR. It depends on dedis/onet#676
While fixing a missing test in byzcoin, I saw that the ServerIdentities are not fully
initialized for local tests. As the new configuration contract in byzcoin also
checks for Address and Description in the ServerIdentity, they also must be
set for local tests.
Once this PR is merged, the onet version should be increased.