diff options
author | Wei-Ning Huang <w@dexon.org> | 2019-01-05 23:34:40 +0800 |
---|---|---|
committer | Wei-Ning Huang <w@dexon.org> | 2019-01-14 15:26:26 +0800 |
commit | 504e8d3e93a578e7a5f69c9d69bd9c469341e4f4 (patch) | |
tree | 9c5f1774aba3195f40a132dae00229bff073372e | |
parent | 9b93d9105164b5c64932b9e563c75bdf02ef6bd4 (diff) | |
download | dexon-504e8d3e93a578e7a5f69c9d69bd9c469341e4f4.tar.gz dexon-504e8d3e93a578e7a5f69c9d69bd9c469341e4f4.tar.zst dexon-504e8d3e93a578e7a5f69c9d69bd9c469341e4f4.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 |