eth: fix test breakage from the previous commit

pull/1275/head
Péter Szilágyi 10 years ago
parent b91b581b80
commit 90d45f0397
  1. 1
      eth/handler.go
  2. 2
      eth/protocol_test.go

@ -7,7 +7,6 @@ import (
"time" "time"
"github.com/ethereum/go-ethereum/pow" "github.com/ethereum/go-ethereum/pow"
"github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core" "github.com/ethereum/go-ethereum/core"
"github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/types"

@ -167,7 +167,7 @@ func newProtocolManagerForTesting(txAdded chan<- []*types.Transaction) *Protocol
db, _ = ethdb.NewMemDatabase() db, _ = ethdb.NewMemDatabase()
chain, _ = core.NewChainManager(core.GenesisBlock(0, db), db, db, core.FakePow{}, em) chain, _ = core.NewChainManager(core.GenesisBlock(0, db), db, db, core.FakePow{}, em)
txpool = &fakeTxPool{added: txAdded} txpool = &fakeTxPool{added: txAdded}
pm = NewProtocolManager(ProtocolVersion, 0, em, txpool, chain) pm = NewProtocolManager(ProtocolVersion, 0, em, txpool, core.FakePow{}, chain)
) )
pm.Start() pm.Start()
return pm return pm

Loading…
Cancel
Save