From 504e8d3e93a578e7a5f69c9d69bd9c469341e4f4 Mon Sep 17 00:00:00 2001 From: Wei-Ning Huang Date: Sat, 5 Jan 2019 23:34:40 +0800 Subject: dex: fix test due to consensus-core change --- dex/app_test.go | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/dex/app_test.go b/dex/app_test.go index 82bf8a6f6..9278160fb 100644 --- a/dex/app_test.go +++ b/dex/app_test.go @@ -154,7 +154,7 @@ func TestVerifyBlock(t *testing.T) { big.NewInt(int64(dex.chainConfig.Dexcon.NumChains))) // Prepare normal block. - block := coreTypes.NewBlock() + block := &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -170,7 +170,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare invalid nonce tx. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -186,7 +186,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare invalid block height. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 2 @@ -202,7 +202,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare reach block limit. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -218,7 +218,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare insufficient funds. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -252,7 +252,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare invalid intrinsic gas. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -286,7 +286,7 @@ func TestVerifyBlock(t *testing.T) { } // Prepare invalid transactions with nonce. - block = coreTypes.NewBlock() + block = &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Position.ChainID = uint32(chainID.Uint64()) block.Position.Height = 1 @@ -364,7 +364,7 @@ func TestBlockConfirmed(t *testing.T) { expectCost.Add(&expectCost, &cost) expectNonce = nonce - block := coreTypes.NewBlock() + block := &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Witness = witness block.Payload = payload @@ -650,7 +650,7 @@ func prepareConfirmedBlocks(dex *Dexon, keys []*ecdsa.PrivateKey, txNum int) (bl return } - block := coreTypes.NewBlock() + block := &coreTypes.Block{} block.Hash = coreCommon.NewRandomHash() block.Witness = witness block.Payload = payload -- cgit v1.2.3