Beispiel #1
0
        public bool TryParseTransaction(ref ByteSequenceReader r, IBlockParser bp)
        {
            var offset = r.Data.Consumed;
            var start  = r.Data.Position;

            if (!r.TryReadLittleEndian(out _version))
            {
                return(false);
            }
            if (!r.TryReadVariant(out var countIn))
            {
                return(false);
            }

            bp.TxStart(this, offset);

            Inputs = new TxIn[countIn];
            for (var i = 0L; i < countIn; i++)
            {
                ref var txIn = ref Inputs[i];
                if (!txIn.TryParseTxIn(ref r, bp))
                {
                    return(false);
                }
            }
Beispiel #2
0
        public bool TryParseTxIn(ref ByteSequenceReader r, IBlockParser bp)
        {
            if (!_prevOutPoint.TryReadOutPoint(ref r))
            {
                goto fail;
            }

            bp.TxInStart(this, r.Data.Consumed);

            if (!_scriptSig.TryParseScript(ref r, bp))
            {
                goto fail;
            }
            if (!r.TryReadLittleEndian(out _sequence))
            {
                goto fail;
            }

            bp.TxInParsed(this, r.Data.Consumed);

            return(true);

fail:
            return(false);
        }
Beispiel #3
0
        public bool TryReadBlockHeader(ref ByteSequenceReader r)
        {
            if (r.Data.Remaining < BlockHeaderSize)
            {
                return(false);
            }

            var start = r.Data.Position;

            if (!r.TryReadLittleEndian(out _version))
            {
                return(false);
            }
            if (!r.TryReadUInt256(ref _hashPrevBlock))
            {
                return(false);
            }
            if (!r.TryReadUInt256(ref _hashMerkleRoot))
            {
                return(false);
            }
            if (!r.TryReadLittleEndian(out _time))
            {
                return(false);
            }
            if (!r.TryReadLittleEndian(out _bits))
            {
                return(false);
            }
            if (!r.TryReadLittleEndian(out _nonce))
            {
                return(false);
            }

            var end = r.Data.Position;

            var blockBytes = r.Data.Sequence.Slice(start, end).ToArray();

            using var sha256 = SHA256.Create();
            var hash1 = sha256.ComputeHash(blockBytes);
            var hash2 = sha256.ComputeHash(hash1);

            hash2.CopyTo(_hash.Span);
            return(true);
        }
Beispiel #4
0
        public bool TryReadTxIn(ref ByteSequenceReader r)
        {
            if (!_prevOutPoint.TryReadOutPoint(ref r))
            {
                goto fail;
            }
            if (!_scriptSig.TryReadScript(ref r))
            {
                goto fail;
            }
            if (!r.TryReadLittleEndian(out _sequence))
            {
                goto fail;
            }

            return(true);

fail:
            return(false);
        }