Beispiel #1
0
        public override bool Equals(object obj)
        {
            ExtPubKey item = obj as ExtPubKey;

            if (item == null)
            {
                return(false);
            }
            return(Hash.Equals(item.Hash));
        }
Beispiel #2
0
        public override bool Equals(object obj)
        {
            ChainedBlock item = obj as ChainedBlock;

            if (item == null)
            {
                return(false);
            }
            return(phashBlock.Equals(item.phashBlock));
        }