-
Notifications
You must be signed in to change notification settings - Fork 17
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
Problem: release/v0.1
branch is not updated with latest code
#83
Conversation
* Problem: Dependencies are not upgraded to latest Solution: Upgraded dependencies and fixed clippy warnings * Fix ethermint build failure * Add missing import * upgrade dependencies * bump up versions of crate to 0.1.2
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.
ack, will review tomorrow if not urgent
signers/mnemonic-signer/src/lib.rs
Outdated
@@ -107,11 +106,14 @@ impl Signer for MnemonicSigner { | |||
let signing_key = self.get_signing_key()?; | |||
|
|||
let signature: Signature = match self.algo { | |||
AddressAlgo::Secp256k1 => signing_key.sign_digest(sha2::Sha256::new().chain(message)), | |||
AddressAlgo::Secp256k1 => <SigningKey as k256::ecdsa::signature::Signer< |
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.
&signing_key.sign(...) won't infer correctly?
let encoded_point: EncodedPoint = key.into(); | ||
let hash = | ||
Keccak256::digest(&encoded_point.to_untagged_bytes().unwrap())[12..].to_vec(); | ||
let encoded_point: EncodedPoint = key.to_encoded_point(false); |
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.
false
here is for uncompressed (maybe good to add a comment)
Solution: Update LICENSE file
* Problem: License file is not up-to-dated Solution: Update LICENSE file * Problem: Copyright is missing attribution Solution: Update LICENSE file * Removed double comment openings
* Problem: License file is not up-to-dated Solution: Update LICENSE file * Problem: Copyright is missing attribution Solution: Update LICENSE file * Removed double comment openings * Problem: Copyright entity has to be updated Solution: Update files with copyright notice
* Upgrade ibc-go and cosmos-sdk to latest version * Update github workflows and fix clippy errors * update audit check github action * Fix path string encoding
Solution: Merge
main
branch intorelease/v0.1
.