From d31183ff1966817133d9817cc33bf1c2771ac04c Mon Sep 17 00:00:00 2001 From: David Hill Date: Mon, 7 Jul 2014 11:07:30 -0400 Subject: [PATCH] go fmt --- ldb/tx.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ldb/tx.go b/ldb/tx.go index ef7ec77b..8f5c94c3 100644 --- a/ldb/tx.go +++ b/ldb/tx.go @@ -109,10 +109,10 @@ func (db *LevelDb) getTxFullySpent(txsha *btcwire.ShaHash) ([]*spentTx, error) { for i := range spentTxList { offset := i * 20 - blkHeight := binary.LittleEndian.Uint64(buf[offset:offset+8]) - txOff := binary.LittleEndian.Uint32(buf[offset+8:offset+12]) - txLen := binary.LittleEndian.Uint32(buf[offset+12:offset+16]) - numTxO := binary.LittleEndian.Uint32(buf[offset+16:offset+20]) + blkHeight := binary.LittleEndian.Uint64(buf[offset : offset+8]) + txOff := binary.LittleEndian.Uint32(buf[offset+8 : offset+12]) + txLen := binary.LittleEndian.Uint32(buf[offset+12 : offset+16]) + numTxO := binary.LittleEndian.Uint32(buf[offset+16 : offset+20]) sTx := spentTx{ blkHeight: int64(blkHeight),