From af89ed1c2e6bb43f3b030f49225ce7eda4cddf98 Mon Sep 17 00:00:00 2001 From: Dave Collins Date: Tue, 28 May 2013 18:43:13 -0500 Subject: [PATCH] Correct documentation of the Block.TxLoc function. --- block.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/block.go b/block.go index e857d18..990a200 100644 --- a/block.go +++ b/block.go @@ -156,7 +156,8 @@ func (b *Block) ProtocolVersion() uint32 { } // TxLoc() returns the offsets and lengths of each transaction in a raw block. -// It is used to allow fast indexing into the +// It is used to allow fast indexing into transactions within the raw byte +// stream. func (b *Block) TxLoc() (txlocD []btcwire.TxLoc, err error) { rawMsg, pver, err := b.Bytes() if err != nil {