Пример #1
0
        public override bool Equals(object obj)
        {
            TxDestination item = obj as TxDestination;

            if (item == null)
            {
                return(false);
            }
            return(Utils.ArrayEqual(_DestBytes, item._DestBytes) && item.GetType() == this.GetType());
        }
Пример #2
0
 public BitcoinAddress(TxDestination id, Network network)
     : base(id.ToBytes(), network)
 {
 }