Skip to content

Commit 9331834

Browse files
benmadouglasbakkum
authored andcommitted
more feedback #2
1 parent 99147b7 commit 9331834

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,4 @@ Exhaustive tests
6767

6868
With valgrind, you might need to increase the max stack size:
6969

70-
$ valgrind --max-stackframe=2097912 ./exhaustive_tests
70+
$ valgrind --max-stackframe=2500000 ./exhaustive_tests

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ AC_ARG_WITH([ecmult-window], [AS_HELP_STRING([--with-ecmult-window=SIZE|auto],
168168
AC_ARG_WITH([ecmult-gen-precision], [AS_HELP_STRING([--with-ecmult-gen-precision=2|4|8|auto],
169169
[Precision bits to tune the precomputed table size for signing.]
170170
[The size of the table is 32kB for 2 bits, 64kB for 4 bits, 512kB for 8 bits of precision.]
171-
[A smaller table size usually results in slower signing.]
171+
[A larger table size usually results in possible faster signing.]
172172
["auto" is a reasonable setting for desktop machines (currently 4). [default=auto]]
173173
)],
174174
[req_ecmult_gen_precision=$withval], [req_ecmult_gen_precision=auto])

include/secp256k1.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -646,7 +646,7 @@ SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_privkey_tweak_mul(
646646
* uniformly random 32-byte arrays, or equal to zero. 1 otherwise.
647647
* Args: ctx: pointer to a context object initialized for validation
648648
* (cannot be NULL).
649-
* In/Out: pubkey: pointer to a public key obkect.
649+
* In/Out: pubkey: pointer to a public key object.
650650
* In: tweak: pointer to a 32-byte tweak.
651651
*/
652652
SECP256K1_API SECP256K1_WARN_UNUSED_RESULT int secp256k1_ec_pubkey_tweak_mul(

0 commit comments

Comments
 (0)