crypto/secp256k1: remove stray i

This commit is contained in:
Felix Lange 2017-12-08 11:36:34 +01:00 committed by GitHub
parent f0199b83df
commit 1dbfc87b00
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -99,7 +99,7 @@ static int secp256k1_ext_reencode_pubkey(
}
unsigned int flag = (outlen == 33) ? SECP256K1_EC_COMPRESSED : SECP256K1_EC_UNCOMPRESSED;
return secp256k1_ec_pubkey_serialize(ctx, out, &outlen, &pubkey, flag);
}i
}
// secp256k1_ext_scalar_mul multiplies a point by a scalar in constant time.
//