3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-14 19:25:51 +00:00

Add a TODO to merge DeterministicKey and ECKey together.

This commit is contained in:
Mike Hearn 2013-07-11 13:43:35 +02:00
parent 98219bdd1b
commit be39c176db

View File

@ -35,8 +35,10 @@ import java.util.Collections;
import static com.google.common.base.Preconditions.checkArgument;
import static com.google.common.base.Preconditions.checkNotNull;
// TODO: Merge this with a redesigned ECKey class.
/**
* An extended key is a node in a {@link DeterministicHierarchy}. As per
* A deterministic key is a node in a {@link DeterministicHierarchy}. As per
* <a href="https://en.bitcoin.it/wiki/BIP_0032">the BIP 32 specification</a> it is a pair (key, chaincode). If you
* know its path in the tree you can derive more keys from this.
*/