From 1dbfc87b0041184e46474f88b5ac0936553e4212 Mon Sep 17 00:00:00 2001 From: Felix Lange Date: Fri, 8 Dec 2017 11:36:34 +0100 Subject: [PATCH] crypto/secp256k1: remove stray i --- crypto/secp256k1/ext.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/secp256k1/ext.h b/crypto/secp256k1/ext.h index c166837b3e..9b043c724e 100644 --- a/crypto/secp256k1/ext.h +++ b/crypto/secp256k1/ext.h @@ -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. //