aboutsummaryrefslogtreecommitdiffstats
path: root/dex/helper_test.go
diff options
context:
space:
mode:
authorSonic <sonic@dexon.org>2018-12-04 16:13:41 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:19 +0800
commit5d031e08ed2758eb7fa9c2d9c107204f93ae0733 (patch)
tree3a7ed42404b9b9ace5424578c7b2753444014417 /dex/helper_test.go
parent122e398cd89925216226f8f5a194c93bf8921897 (diff)
downloadgo-tangerine-5d031e08ed2758eb7fa9c2d9c107204f93ae0733.tar
go-tangerine-5d031e08ed2758eb7fa9c2d9c107204f93ae0733.tar.gz
go-tangerine-5d031e08ed2758eb7fa9c2d9c107204f93ae0733.tar.bz2
go-tangerine-5d031e08ed2758eb7fa9c2d9c107204f93ae0733.tar.lz
go-tangerine-5d031e08ed2758eb7fa9c2d9c107204f93ae0733.tar.xz
go-tangerine-5d031e08ed2758eb7fa9c2d9c107204f93ae0733.tar.zst
go-tangerine-5d031e08ed2758eb7fa9c2d9c107204f93ae0733.zip
dex: replace total difficulty with block number (#73)
In dexon, we don't "mine" and the blockchain won't and shouldn't fork, so there is no difficulty concept, just replace it with block number. Note: this commit only replace total difficulty related logic and code in dex, dex/downloader package.
Diffstat (limited to 'dex/helper_test.go')
-rw-r--r--dex/helper_test.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/dex/helper_test.go b/dex/helper_test.go
index abe0f6b89..62dd6c5f4 100644
--- a/dex/helper_test.go
+++ b/dex/helper_test.go
@@ -264,20 +264,20 @@ func newTestPeer(name string, version int, pm *ProtocolManager, shake bool) (*te
var (
genesis = pm.blockchain.Genesis()
head = pm.blockchain.CurrentHeader()
- td = pm.blockchain.GetTd(head.Hash(), head.Number.Uint64())
+ number = head.Number.Uint64()
)
- tp.handshake(nil, td, head.Hash(), genesis.Hash())
+ tp.handshake(nil, number, head.Hash(), genesis.Hash())
}
return tp, errc
}
// handshake simulates a trivial handshake that expects the same state from the
// remote side as we are simulating locally.
-func (p *testPeer) handshake(t *testing.T, td *big.Int, head common.Hash, genesis common.Hash) {
+func (p *testPeer) handshake(t *testing.T, number uint64, head common.Hash, genesis common.Hash) {
msg := &statusData{
ProtocolVersion: uint32(p.version),
NetworkId: DefaultConfig.NetworkId,
- TD: td,
+ Number: number,
CurrentBlock: head,
GenesisBlock: genesis,
}