From c5927833ac583d39bc32975c2e6b4a6a502a3ca1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Bylica?= Date: Fri, 7 Nov 2014 11:37:34 +0100 Subject: [PATCH] static const variable name fix --- libdevcrypto/EC.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdevcrypto/EC.cpp b/libdevcrypto/EC.cpp index 237acebc5..a54c0132d 100644 --- a/libdevcrypto/EC.cpp +++ b/libdevcrypto/EC.cpp @@ -134,7 +134,7 @@ bool crypto::verify(Signature const& _signature, bytesConstRef _message) bool crypto::verify(Public const& _p, Signature const& _sig, bytesConstRef _message, bool _hashed) { - static const size_t derMaxEncodingLength = 72; + static const size_t c_derMaxEncodingLength = 72; if (_hashed) { assert(_message.size() == 32);