From 0a8eb6846b936cf6a3be4fa3be314c453901a4f3 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Tue, 14 May 2019 15:06:12 +0100 Subject: [PATCH] Re-add removed whitespace --- storage/sqlite3.go | 1 + 1 file changed, 1 insertion(+) diff --git a/storage/sqlite3.go b/storage/sqlite3.go index 9c16689..08a6c19 100644 --- a/storage/sqlite3.go +++ b/storage/sqlite3.go @@ -123,6 +123,7 @@ func GetBlockRange(ctx context.Context, db *sql.DB, blockOut chan<- []byte, errO func StoreBlock(conn *sql.DB, height int, hash string, sapling bool, encoded []byte) error { insertBlock := "REPLACE INTO blocks (block_height, block_hash, sapling, compact_encoding) values (?, ?, ?, ?)" + tx, err := conn.Begin() if err != nil { return errors.Wrap(err, fmt.Sprintf("creating db tx %d", height))