Skip to content

Commit 5d57f3c

Browse files
committed
fix: typos
1 parent 5a49cb6 commit 5d57f3c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

patch-testing/secp256k1/build.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ fn main() {
55
"./program",
66
BuildArgs { features: vec!["v0-29-1".to_string()], ..Default::default() },
77
);
8-
// TODO: Find a solution to avoid conflics on secp256k1-sys
8+
// TODO: Find a solution to avoid conflicts on secp256k1-sys
99
//sp1_build::build_program_with_args(
1010
// "./program",
1111
// BuildArgs { features: vec!["v0-30-0".to_string()], ..Default::default() },

patch-testing/secp256k1/program/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ secp256k1-v0-29-1 = { git = "https://github.com/sp1-patches/rust-secp256k1", pac
3434
"serde",
3535
], optional = true }
3636

37-
# TODO: Find a solution to avoid conflics on secp256k1-sys
37+
# TODO: Find a solution to avoid conflicts on secp256k1-sys
3838
# secp256k1-v0-30-0 = { git = "https://github.com/sp1-patches/rust-secp256k1", package = "secp256k1", tag = "patch-0.30.0-sp1-4.1.0", features = [
3939
# "recovery",
4040
# "global-context",

patch-testing/secp256k1/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ mod tests {
99
recover_rand_lte_100(stdin)
1010
}
1111

12-
/* TODO: Find a solution to avoid conflics on secp256k1-sys
12+
/* TODO: Find a solution to avoid conflicts on secp256k1-sys
1313
#[sp1_test::sp1_test("secp256k1_recover_v0_30_0", syscalls = [SECP256K1_DOUBLE, SECP256K1_ADD], prove)]
1414
fn test_recover_v0_30_0_rand_lte_100(
1515
stdin: &mut sp1_sdk::SP1Stdin,
@@ -66,7 +66,7 @@ mod tests {
6666
verify_rand_lte_100(stdin)
6767
}
6868

69-
/* TODO: Find a solution to avoid conflics on secp256k1-sys
69+
/* TODO: Find a solution to avoid conflicts on secp256k1-sys
7070
#[sp1_test::sp1_test("secp256k1_verify_v0_30_0", syscalls = [SECP256K1_DOUBLE, SECP256K1_ADD], prove)]
7171
fn test_verify_v0_30_0_rand_lte_100(
7272
stdin: &mut sp1_sdk::SP1Stdin,

0 commit comments

Comments
 (0)