diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-24 15:05:24 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-24 15:05:24 +0800 |
commit | c7dd1a1b622eba3e28944f9d00827b7c5fe57c4a (patch) | |
tree | 846a0f56def1c9ce7855bc51a42d724192ecf7b7 /dex/downloader/testchain_test.go | |
parent | d60075505d75de052905caad3562ead280d83199 (diff) | |
download | dexon-c7dd1a1b622eba3e28944f9d00827b7c5fe57c4a.tar dexon-c7dd1a1b622eba3e28944f9d00827b7c5fe57c4a.tar.gz dexon-c7dd1a1b622eba3e28944f9d00827b7c5fe57c4a.tar.bz2 dexon-c7dd1a1b622eba3e28944f9d00827b7c5fe57c4a.tar.lz dexon-c7dd1a1b622eba3e28944f9d00827b7c5fe57c4a.tar.xz dexon-c7dd1a1b622eba3e28944f9d00827b7c5fe57c4a.tar.zst dexon-c7dd1a1b622eba3e28944f9d00827b7c5fe57c4a.zip |
consensus: dexcon: snapshot round height when finalizing block (#170)
Instead of having BP to send a tx to register the round height, just
modify the state when finalizing block.
Diffstat (limited to 'dex/downloader/testchain_test.go')
-rw-r--r-- | dex/downloader/testchain_test.go | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/dex/downloader/testchain_test.go b/dex/downloader/testchain_test.go index d96ebcfbf..73d4863a5 100644 --- a/dex/downloader/testchain_test.go +++ b/dex/downloader/testchain_test.go @@ -201,15 +201,6 @@ func (tc *testChain) generate(n int, seed byte, parent *types.Block, nodes *dexc half := roundInterval / 2 switch i % roundInterval { - case 0: - if round > 0 { - node := testNodes.Nodes(round)[0] - data, err := vm.PackNotifyRoundHeight(round, uint64(i)) - if err != nil { - panic(err) - } - addTx(block, node, data) - } case half: // Sign current CRS to geneate the next round CRS and propose it. testNodes.SignCRS(round) |