Remove pkg/errors; Update Gopkg.toml, but not GRPC because it breaks.

This commit is contained in:
Jae Kwon
2018-03-18 01:40:26 +01:00
parent 791f95bac3
commit 4e02184676
4 changed files with 5 additions and 10 deletions

View File

@ -3,13 +3,13 @@ package abcicli
import (
"bufio"
"container/list"
"errors"
"fmt"
"net"
"reflect"
"sync"
"time"
"github.com/pkg/errors"
"github.com/tendermint/abci/types"
cmn "github.com/tendermint/tmlibs/common"
)
@ -111,7 +111,7 @@ func (cli *socketClient) StopForError(err error) {
func (cli *socketClient) Error() error {
cli.mtx.Lock()
defer cli.mtx.Unlock()
return errors.Wrap(cli.err, "socket client error")
return cli.err
}
// Set listener for all responses