Browse Source

Gah. Revert "fix" since it results in a build failure without

corresponding FixedHash fix.
cl-refactor
Gav Wood 10 years ago
parent
commit
f00d58089d
  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 sha3(~m_value); // TODO: some sort of PRNG series. return sha3(m_value);
} }
void Nonce::resetInternal() void Nonce::resetInternal()

Loading…
Cancel
Save