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; } /// /// Initialize an empty instance of CTxIn class /// public CTxIn() { } /// /// 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 bool IsCoinBase() { return txID.IsZero(); } public override string ToString () { StringBuilder sb = new StringBuilder (); if (IsCoinBase()) { sb.AppendFormat("CTxIn(txId={0},coinbase={2},nSequence={3})", txID.ToString(), n, Interop.ToHex(scriptSig), nSequence); } else { sb.AppendFormat("CTxIn(txId={0},n={1},scriptSig={2},nSequence={3})", txID.ToString(), n, (new CScript(scriptSig)).ToString(), nSequence); } return sb.ToString (); } } }