Browse Source

Re-add removed whitespace

remove_0mq
Jack Grigg 5 years ago
parent
commit
0a8eb6846b
No known key found for this signature in database GPG Key ID: 9E8255172BBF9898
  1. 1
      storage/sqlite3.go

1
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))

Loading…
Cancel
Save