using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Novacoin { public class COutPoint { /// /// Hash of parent transaction. /// public Hash256 hash; /// /// Parent input number. /// public uint n; public COutPoint() { hash = new Hash256(); n = uint.MaxValue; } public COutPoint(Hash256 hashIn, uint nIn) { hash = hashIn; n = nIn; } public COutPoint(COutPoint o) { hash = new Hash256(o.hash); n = o.n; } public COutPoint(IEnumerable bytes) { hash = new Hash256(bytes); n = BitConverter.ToUInt32(bytes.ToArray(), 32); } public bool IsNull { get { return hash.IsZero && n == uint.MaxValue; } } public IList Bytes { get { List r = new List(); r.AddRange(hash.hashBytes); r.AddRange(BitConverter.GetBytes(n)); return r; } } public override string ToString() { StringBuilder sb = new StringBuilder(); sb.AppendFormat("COutPoint({0}, {1})", hash.ToString(), n); return sb.ToString(); } } }