BitSharper.TransactionInput.Parse C# (CSharp) Method

Parse() protected method

protected Parse ( ) : void
return void
        protected override void Parse()
        {
            Outpoint = new TransactionOutPoint(Params, Bytes, Cursor);
            Cursor += Outpoint.MessageSize;
            var scriptLen = (int) ReadVarInt();
            ScriptBytes = ReadBytes(scriptLen);
            _sequence = ReadUint32();
        }