Browse Source

deps: remove pkg errors (#6666)

## Description

remove pkg/errors since we use the provided fmt.Errorf
pull/6669/head
Marko 3 years ago
committed by GitHub
parent
commit
96863decca
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 3 deletions
  1. +0
    -1
      go.mod
  2. +1
    -2
      scripts/keymigrate/migrate.go

+ 0
- 1
go.mod View File

@ -24,7 +24,6 @@ require (
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/oasisprotocol/curve25519-voi v0.0.0-20210609091139-0a56a4bca00b
github.com/ory/dockertest v3.3.5+incompatible
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.11.0
github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
github.com/rs/cors v1.8.0


+ 1
- 2
scripts/keymigrate/migrate.go View File

@ -18,7 +18,6 @@ import (
"sync"
"github.com/google/orderedcode"
"github.com/pkg/errors"
dbm "github.com/tendermint/tm-db"
)
@ -395,7 +394,7 @@ func Migrate(ctx context.Context, db dbm.DB) error {
// check the error results
if len(errs) != 0 {
return errors.Errorf("encountered errors during migration: %v", errStrs)
return fmt.Errorf("encountered errors during migration: %v", errStrs)
}
return nil


Loading…
Cancel
Save