From 3029a3c221af3e3165b851a9469ab75c21dfe996 Mon Sep 17 00:00:00 2001 From: subtly Date: Mon, 3 Aug 2015 06:15:25 +0200 Subject: [PATCH] nonce fix --- libdevcrypto/Common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libdevcrypto/Common.cpp b/libdevcrypto/Common.cpp index e7304f3f9..c073fbf30 100644 --- a/libdevcrypto/Common.cpp +++ b/libdevcrypto/Common.cpp @@ -367,7 +367,7 @@ Secret Nonce::next() { initialiseIfNeeded(); m_value = sha3(m_value); - return m_value; + return sha3(m_value); } void Nonce::resetInternal()