using System; using System.Text; using System.Collections.Generic; namespace Novacoin { /// /// Transaction input. /// public class CTxIn { /// /// Hash of parent transaction. /// public Hash256 txID = new Hash256(); /// /// Parent input number. /// public uint n = 0; /// /// First half of script, signatures for the scriptPubKey /// public byte[] scriptSig; /// /// Transaction variant number, irrelevant if nLockTime isn't specified. Its value is 0xffffffff by default. /// public uint nSequence = 0xffffffff; /// /// Initialize new CTxIn instance as copy of another one. /// /// CTxIn instance. public CTxIn(CTxIn i) { txID = i.txID; n = i.n; scriptSig = i.scriptSig; nSequence = i.nSequence; } /// /// Get raw bytes representation of our input. /// /// Byte sequence. public IList ToBytes() { List inputBytes = new List(); inputBytes.AddRange(txID.hashBytes); // Input transaction id inputBytes.AddRange(Interop.LEBytes(n)); // Output number inputBytes.AddRange(VarInt.EncodeVarInt(scriptSig.LongLength)); // scriptSig length inputBytes.AddRange(scriptSig); // scriptSig inputBytes.AddRange(Interop.LEBytes(nSequence)); // Sequence return inputBytes; } public override string ToString () { StringBuilder sb = new StringBuilder (); sb.AppendFormat ("CTxIn(txId={0},n={1},scriptSig={2}", txID.ToString(), n, scriptSig.ToString()); return sb.ToString (); } } }