Skip to content
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

Fix some trivial typos #1

Merged
merged 1 commit into from
Oct 22, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Grin is still an infant, much is left to be done and contributions are welcome.
* Chain logic and related validation.
* Efficient miner (as a distinct project).
* User-friendly wallet (as a distinct project).
* Figure out if the rangeproofs can be eliminated under some cicrumstances while keeping security guarantes.
* Figure out if the rangeproofs can be eliminated under some cicrumstances while keeping security guarantees.
* Website, logo design and all the cool stuff.

Don't worry, we'll get there, with your help.
3 changes: 1 addition & 2 deletions core/src/pow/siphash.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ mod test {
use super::*;

/// Some test vectors hoisted from the Java implementation (adjusted from
/// the
/// fact that the Java impl uses a long, aka a signed 64 bits number).
/// the fact that the Java impl uses a long, aka a signed 64 bits number).
#[test]
fn hash_some() {
assert_eq!(siphash24([1, 2, 3, 4], 10), 928382149599306901);
Expand Down