fix lint.

This commit is contained in:
Raúl Kripalani 2020-11-01 17:09:14 +00:00
parent 5a98660d1b
commit 72e573d98d
3 changed files with 3 additions and 3 deletions

View File

@ -8,9 +8,9 @@ import (
"strings" "strings"
"testing" "testing"
"github.com/filecoin-project/lotus/lib/blockstore"
blocks "github.com/ipfs/go-block-format" blocks "github.com/ipfs/go-block-format"
"github.com/ipfs/go-cid" "github.com/ipfs/go-cid"
"github.com/ipfs/go-ipfs-blockstore"
u "github.com/ipfs/go-ipfs-util" u "github.com/ipfs/go-ipfs-util"
"github.com/stretchr/testify/require" "github.com/stretchr/testify/require"

View File

@ -19,7 +19,7 @@ type BlockstoreDomain string
const ( const (
// BlockstoreChain represents the blockstore domain for chain data. // BlockstoreChain represents the blockstore domain for chain data.
// Right now, this includes chain objects (tipsets, blocks, messages), as // Right now, this includes chain objects (tipsets, blocks, messages), as
// well as state. In the future, they may get segretated into different // well as state. In the future, they may get segregated into different
// domains. // domains.
BlockstoreChain = BlockstoreDomain("chain") BlockstoreChain = BlockstoreDomain("chain")
) )

View File

@ -11,7 +11,7 @@ import (
"github.com/ipfs/go-datastore" "github.com/ipfs/go-datastore"
"github.com/ipfs/go-datastore/namespace" "github.com/ipfs/go-datastore/namespace"
dssync "github.com/ipfs/go-datastore/sync" dssync "github.com/ipfs/go-datastore/sync"
"github.com/ipfs/go-ipfs-blockstore" blockstore "github.com/ipfs/go-ipfs-blockstore"
"github.com/multiformats/go-multiaddr" "github.com/multiformats/go-multiaddr"
"golang.org/x/xerrors" "golang.org/x/xerrors"