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()); }
public BitcoinAddress(TxDestination id, Network network) : base(id.ToBytes(), network) { }