aboutsummaryrefslogtreecommitdiffstats
path: root/dex/app_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'dex/app_test.go')
-rw-r--r--dex/app_test.go12
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())