You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.
Personally, I would not use the key related code for anything. This is barely maintained for long time.
We can integrate a fix if you want to propose one.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
aleth/libethcore/KeyManager.cpp
Line 357 in a3b9320
There are multiple issues with this method:
KeyPair p = KeyPair::create();
-- this value is completely ignoredNewKeyType::NoVanity
is set, starting threads is pointless and a waste of resources, thep
mentioned above can be simply returned immediately.KeyPair
(i.e. where public key does not match private key).Until this is fixed, I suggest using
KeyPair::create()
directly instead ofKeyManager::newKeyPair
.The text was updated successfully, but these errors were encountered: