KeyChainGroup: Remove not precise comment.

This constructor is in fact "Used for deserialization" but not only for deserialization.
This commit is contained in:
Oscar Guindzberg
2018-12-24 15:15:52 -03:00
committed by Andreas Schildbach
parent b9c2b61712
commit 39386853a1

View File

@@ -115,7 +115,6 @@ public class KeyChainGroup implements KeyBag {
this(params, null, ImmutableList.of(watch ? DeterministicKeyChain.watch(accountKey) : DeterministicKeyChain.spend(accountKey)), null, null);
}
// Used for deserialization.
private KeyChainGroup(NetworkParameters params, @Nullable BasicKeyChain basicKeyChain, List<DeterministicKeyChain> chains,
@Nullable EnumMap<KeyChain.KeyPurpose, DeterministicKey> currentKeys, @Nullable KeyCrypter crypter) {
this.params = params;