diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-05 23:34:40 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-04-09 21:32:55 +0800 |
commit | a7c49e1025fa067bf007b86039cedbbaba79cda0 (patch) | |
tree | ac843b97963979f3b70fbdddf3677c98a2fffb80 | |
parent | 5e4fb304eb14b2dccdbd6364fb4933bb1d9306fa (diff) | |
download | dexon-a7c49e1025fa067bf007b86039cedbbaba79cda0.tar.gz dexon-a7c49e1025fa067bf007b86039cedbbaba79cda0.tar.zst dexon-a7c49e1025fa067bf007b86039cedbbaba79cda0.zip |
dex: fix test due to consensus-core change
-rw-r--r-- | dex/app_test.go | 18 |
1 files 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 |