aboutsummaryrefslogtreecommitdiffstats
path: root/eth/helper_test.go
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2018-01-31 18:46:38 +0800
committerGitHub <noreply@github.com>2018-01-31 18:46:38 +0800
commitfdb34b7a7c87142cde48a2ec092f77a56d66f773 (patch)
tree6608a33f95d5067d23f01c6951eca3f983c3566d /eth/helper_test.go
parent07d4a022573444eac0db2f5da500cc5ee1e940bb (diff)
parent566d5c0777c2c5ee1a8fe3c0aee1e5c8c69053e2 (diff)
downloadgo-tangerine-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar
go-tangerine-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.gz
go-tangerine-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.bz2
go-tangerine-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.lz
go-tangerine-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.xz
go-tangerine-fdb34b7a7c87142cde48a2ec092f77a56d66f773.tar.zst
go-tangerine-fdb34b7a7c87142cde48a2ec092f77a56d66f773.zip
Merge pull request #15996 from karalabe/drop-redundant-methods
core, eth, les, light: get rid of redundant methods
Diffstat (limited to 'eth/helper_test.go')
-rw-r--r--eth/helper_test.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/eth/helper_test.go b/eth/helper_test.go
index d44574b86..9a4dc9010 100644
--- a/eth/helper_test.go
+++ b/eth/helper_test.go
@@ -166,8 +166,12 @@ func newTestPeer(name string, version int, pm *ProtocolManager, shake bool) (*te
tp := &testPeer{app: app, net: net, peer: peer}
// Execute any implicitly requested handshakes and return
if shake {
- td, head, genesis := pm.blockchain.Status()
- tp.handshake(nil, td, head, genesis)
+ var (
+ genesis = pm.blockchain.Genesis()
+ head = pm.blockchain.CurrentHeader()
+ td = pm.blockchain.GetTd(head.Hash(), head.Number.Uint64())
+ )
+ tp.handshake(nil, td, head.Hash(), genesis.Hash())
}
return tp, errc
}