Skip to content

Commit

Permalink
fixed renamed package name
Browse files Browse the repository at this point in the history
  • Loading branch information
sadoci committed Sep 23, 2019
1 parent b1cc405 commit b8d83b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions miner/tx_prefetch.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ import (
"math"
"time"

"github.com/ethereum/go-ethereum/common/lru"
"github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/vm"
"github.com/ethereum/go-ethereum/log"
metaminer "github.com/ethereum/go-ethereum/metadium/miner"
)

var (
doneTxs = metaminer.NewLruCache(5000)
doneTxs = lru.NewLruCache(5000, false)
)

func tx_prefetch(w *worker, to *TxOrderer, numWorkers int) {
Expand Down

0 comments on commit b8d83b1

Please sign in to comment.