aboutsummaryrefslogtreecommitdiffstats
path: root/eth/protocol_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2015-06-18 23:25:27 +0800
committerPéter Szilágyi <peterke@gmail.com>2015-06-18 23:25:27 +0800
commit90d45f0397666cce42657849257a6f4f7cd2381c (patch)
tree75a58db16b6f1f703ee5fbf00ed7975153afd0d9 /eth/protocol_test.go
parentb91b581b80ec99dfa07b7206104faa919210fc4f (diff)
downloadgo-tangerine-90d45f0397666cce42657849257a6f4f7cd2381c.tar
go-tangerine-90d45f0397666cce42657849257a6f4f7cd2381c.tar.gz
go-tangerine-90d45f0397666cce42657849257a6f4f7cd2381c.tar.bz2
go-tangerine-90d45f0397666cce42657849257a6f4f7cd2381c.tar.lz
go-tangerine-90d45f0397666cce42657849257a6f4f7cd2381c.tar.xz
go-tangerine-90d45f0397666cce42657849257a6f4f7cd2381c.tar.zst
go-tangerine-90d45f0397666cce42657849257a6f4f7cd2381c.zip
eth: fix test breakage from the previous commit
Diffstat (limited to 'eth/protocol_test.go')
-rw-r--r--eth/protocol_test.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/eth/protocol_test.go b/eth/protocol_test.go
index 69d487c71..6e0eef59c 100644
--- a/eth/protocol_test.go
+++ b/eth/protocol_test.go
@@ -167,7 +167,7 @@ func newProtocolManagerForTesting(txAdded chan<- []*types.Transaction) *Protocol
db, _ = ethdb.NewMemDatabase()
chain, _ = core.NewChainManager(core.GenesisBlock(0, db), db, db, core.FakePow{}, em)
txpool = &fakeTxPool{added: txAdded}
- pm = NewProtocolManager(ProtocolVersion, 0, em, txpool, chain)
+ pm = NewProtocolManager(ProtocolVersion, 0, em, txpool, core.FakePow{}, chain)
)
pm.Start()
return pm