Browse Source

nonce fix

cl-refactor
subtly 10 years ago
parent
commit
3029a3c221
  1. 2
      libdevcrypto/Common.cpp

2
libdevcrypto/Common.cpp

@ -367,7 +367,7 @@ Secret Nonce::next()
{ {
initialiseIfNeeded(); initialiseIfNeeded();
m_value = sha3(m_value); m_value = sha3(m_value);
return m_value; return sha3(m_value);
} }
void Nonce::resetInternal() void Nonce::resetInternal()

Loading…
Cancel
Save