-
Notifications
You must be signed in to change notification settings - Fork 28
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
Introduce composite key to delegate features to each function key #101
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,10 @@ import ( | |
"fmt" | ||
"strings" | ||
|
||
"github.com/tendermint/tendermint/cmd/contract_tests/unmarshaler" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do you know why this import sorting is changed? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Do different versions of
|
||
|
||
"github.com/snikch/goodman/hooks" | ||
"github.com/snikch/goodman/transaction" | ||
|
||
"github.com/tendermint/tendermint/cmd/contract_tests/unmarshaler" | ||
) | ||
|
||
func main() { | ||
|
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.
Do you have any plan to change the type of public key later?
Because you point it as
TODO
.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.
This TODO is a comment intended for #107. It'll be fixed when #107 fixed.
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 fixed the relevant part, but since there is no
NewValidatorUpdate
in the develop branch, the PR of 107 needs to wait for the source code of 101 to be merged.