diff options
author | bojie <bojie@dexon.org> | 2018-12-12 15:32:27 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:54 +0800 |
commit | 1a891ee16641496b99da324e902c082b3acd03bf (patch) | |
tree | 252a92ff1cde04f1026fc810db100a61fcf3aba0 /dex/app_test.go | |
parent | 88803153c916098d65c04125a05f4848ab75c2c4 (diff) | |
download | dexon-1a891ee16641496b99da324e902c082b3acd03bf.tar.gz dexon-1a891ee16641496b99da324e902c082b3acd03bf.tar.zst dexon-1a891ee16641496b99da324e902c082b3acd03bf.zip |
app: remove unnecessary code (#86)
Diffstat (limited to 'dex/app_test.go')
-rw-r--r-- | dex/app_test.go | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/dex/app_test.go b/dex/app_test.go index cbd29d0dc..abe83b92a 100644 --- a/dex/app_test.go +++ b/dex/app_test.go @@ -417,17 +417,7 @@ func TestBlockDelivered(t *testing.T) { Height: 1, }) - pendingBlock, pendingState := dex.blockchain.GetPending() - - r, ok := dex.app.chainLatestRoot.Load(firstBlocksInfo[0].Block.Position.ChainID) - if !ok { - t.Errorf("lastest root cache not exist") - } - - if *r.(*common.Hash) != pendingBlock.Root() { - t.Errorf("incorrect pending root") - } - + _, pendingState := dex.blockchain.GetPending() currentBlock := dex.blockchain.CurrentBlock() if currentBlock.NumberU64() != 0 { t.Errorf("unexpected current block number %v", currentBlock.NumberU64()) |