Exemplo n.º 1
0
 public bool IsChildOf(ExtKey parentKey)
 {
     if (Depth != parentKey.Depth + 1)
     {
         return(false);
     }
     return(parentKey.CalculateChildFingerprint().SequenceEqual(Fingerprint));
 }
Exemplo n.º 2
0
		public bool IsChildOf(ExtKey parentKey)
		{
			if(Depth != parentKey.Depth + 1)
				return false;
			return parentKey.CalculateChildFingerprint().SequenceEqual(Fingerprint);
		}