public override bool Equals(object obj) { ExtPubKey item = obj as ExtPubKey; if (item == null) { return(false); } return(Hash.Equals(item.Hash)); }
public override bool Equals(object obj) { ChainedBlock item = obj as ChainedBlock; if (item == null) { return(false); } return(phashBlock.Equals(item.phashBlock)); }