satellite/satellitedb: Use var block for single variable declar… (#2622)
* satellite/satellitedb: User var block for Error To follow with the code style of the majority of the sources of the current code base the Error variable should be in a block. Replacing a single var expression to a block one makes the godoc more consistent across the repository. * satellite/satellitedb: Remove empty spaces end of line
This commit is contained in:
parent
aaf3283b4e
commit
b24e60a33f
@ -18,8 +18,10 @@ import (
|
||||
"storj.io/storj/satellite/satellitedb/pbold"
|
||||
)
|
||||
|
||||
// ErrMigrate is for tracking migration errors
|
||||
var ErrMigrate = errs.Class("migrate")
|
||||
var (
|
||||
// ErrMigrate is for tracking migration errors
|
||||
ErrMigrate = errs.Class("migrate")
|
||||
)
|
||||
|
||||
// CreateTables is a method for creating all tables for database
|
||||
func (db *DB) CreateTables() error {
|
||||
|
Loading…
Reference in New Issue
Block a user