aboutsummaryrefslogtreecommitdiffstats
path: root/dex/helper_test.go
diff options
context:
space:
mode:
authorSonic <sonic@dexon.org>2018-12-05 15:17:38 +0800
committerWei-Ning Huang <w@byzantine-lab.io>2019-06-12 17:27:19 +0800
commitd4183037825fe7a86e2a6653adb5e97ee0d6bbf8 (patch)
tree51756911df4b00983d1d9678150d1c0c307b4104 /dex/helper_test.go
parent5a75b7ea1e3bd34e2f2de91131d759a41e16cafc (diff)
downloadgo-tangerine-d4183037825fe7a86e2a6653adb5e97ee0d6bbf8.tar
go-tangerine-d4183037825fe7a86e2a6653adb5e97ee0d6bbf8.tar.gz
go-tangerine-d4183037825fe7a86e2a6653adb5e97ee0d6bbf8.tar.bz2
go-tangerine-d4183037825fe7a86e2a6653adb5e97ee0d6bbf8.tar.lz
go-tangerine-d4183037825fe7a86e2a6653adb5e97ee0d6bbf8.tar.xz
go-tangerine-d4183037825fe7a86e2a6653adb5e97ee0d6bbf8.tar.zst
go-tangerine-d4183037825fe7a86e2a6653adb5e97ee0d6bbf8.zip
core, dex: polish sync (#75)
- Broadcasting blocks at chain head event is not correct when the full node is not running in block proposer mode. Introduce NewFinalizedBlockEvent, this event is post by the full node which runs in block proposer mode when a block is witnessed and resulting in some blocks are considered finalized. - Non block proposer node will still broadcast blocks at the following moment (same as ethereum): 1. a sync with a peer is terminated successfully 2. a block passes the fetcher's header check during inserting blocks 3. a block is successfully inserted by fetcher - Don't trigger a sync when we are not behind other peers more than acceptable distance. Fetcher is able to cover this.
Diffstat (limited to 'dex/helper_test.go')
-rw-r--r--dex/helper_test.go11
1 files changed, 10 insertions, 1 deletions
diff --git a/dex/helper_test.go b/dex/helper_test.go
index 62dd6c5f4..86a901cc2 100644
--- a/dex/helper_test.go
+++ b/dex/helper_test.go
@@ -98,6 +98,15 @@ func (s *testP2PServer) RemoveGroup(name string) {
delete(s.group, name)
}
+type testApp struct {
+ finalizedBlockFeed event.Feed
+}
+
+func (a *testApp) SubscribeNewFinalizedBlockEvent(
+ ch chan<- core.NewFinalizedBlockEvent) event.Subscription {
+ return a.finalizedBlockFeed.Subscribe(ch)
+}
+
// newTestProtocolManager creates a new protocol manager for testing purposes,
// with the given number of blocks already known, and potential notification
// channels for different events.
@@ -125,7 +134,7 @@ func newTestProtocolManager(mode downloader.SyncMode, blocks int, generator func
notarySetFunc: func(uint64, uint32) (map[string]struct{}, error) { return nil, nil },
}
- pm, err := NewProtocolManager(gspec.Config, mode, DefaultConfig.NetworkId, evmux, &testTxPool{added: newtx}, engine, blockchain, db, true, tgov)
+ pm, err := NewProtocolManager(gspec.Config, mode, DefaultConfig.NetworkId, evmux, &testTxPool{added: newtx}, engine, blockchain, db, true, tgov, &testApp{})
if err != nil {
return nil, nil, err
}