Skip to content

Commit

Permalink
fix build + lint
Browse files Browse the repository at this point in the history
  • Loading branch information
travisperson committed Oct 26, 2021
1 parent 851a793 commit 25b9207
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions testplans/lotus-soup/testkit/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import (
"sort"
"time"

"github.com/filecoin-project/go-state-types/abi"
"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/chain/beacon"
"github.com/filecoin-project/lotus/chain/wallet"
Expand All @@ -19,6 +20,7 @@ import (

tinflux "github.com/filecoin-project/lotus/tools/stats/influx"
tipldstore "github.com/filecoin-project/lotus/tools/stats/ipldstore"
tpoints "github.com/filecoin-project/lotus/tools/stats/points"
tsync "github.com/filecoin-project/lotus/tools/stats/sync"

influxdb "github.com/kpacha/opencensus-influxdb"
Expand Down
2 changes: 1 addition & 1 deletion tools/stats/ipldstore/ipldstore.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func NewApiIpldStore(ctx context.Context, api apiIpldStoreApi, cacheSize int) (*
cacheSize: cacheSize,
}

cache, err := lru.New2Q(int(store.cacheSize))
cache, err := lru.New2Q(store.cacheSize)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 25b9207

Please sign in to comment.