Merge pull request #304
5fb3229
Fixes a bug where bench_sign would fail due to passing in too small a buffer. (Gregory Maxwell)
This commit is contained in:
commit
7ab311cbb3
|
@ -27,8 +27,8 @@ static void bench_sign(void* arg) {
|
|||
bench_sign_t *data = (bench_sign_t*)arg;
|
||||
|
||||
unsigned char sig[74];
|
||||
int siglen = 74;
|
||||
for (i = 0; i < 20000; i++) {
|
||||
int siglen = 74;
|
||||
int j;
|
||||
secp256k1_ecdsa_signature_t signature;
|
||||
CHECK(secp256k1_ecdsa_sign(data->ctx, data->msg, &signature, data->key, NULL, NULL));
|
||||
|
|
Loading…
Reference in New Issue