From 72e573d98d3cf47734dfaf20f6d94e6d6007c3ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20Kripalani?= Date: Sun, 1 Nov 2020 17:09:14 +0000 Subject: [PATCH] fix lint. --- lib/blockstore/badger/badger_test_suite.go | 2 +- node/repo/interface.go | 2 +- node/repo/memrepo.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/blockstore/badger/badger_test_suite.go b/lib/blockstore/badger/badger_test_suite.go index 6d73be421..e9eed18f5 100644 --- a/lib/blockstore/badger/badger_test_suite.go +++ b/lib/blockstore/badger/badger_test_suite.go @@ -8,9 +8,9 @@ import ( "strings" "testing" + "github.com/filecoin-project/lotus/lib/blockstore" blocks "github.com/ipfs/go-block-format" "github.com/ipfs/go-cid" - "github.com/ipfs/go-ipfs-blockstore" u "github.com/ipfs/go-ipfs-util" "github.com/stretchr/testify/require" diff --git a/node/repo/interface.go b/node/repo/interface.go index 8dab9260f..12f981f01 100644 --- a/node/repo/interface.go +++ b/node/repo/interface.go @@ -19,7 +19,7 @@ type BlockstoreDomain string const ( // BlockstoreChain represents the blockstore domain for chain data. // 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. BlockstoreChain = BlockstoreDomain("chain") ) diff --git a/node/repo/memrepo.go b/node/repo/memrepo.go index 1fa3600fe..1c273428c 100644 --- a/node/repo/memrepo.go +++ b/node/repo/memrepo.go @@ -11,7 +11,7 @@ import ( "github.com/ipfs/go-datastore" "github.com/ipfs/go-datastore/namespace" 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" "golang.org/x/xerrors"